I have created a game in using impact game engine called Staroids.
I have created a database to store the highscores.
I have done what it says on this previous answer and looked at a few other solutions, but it doesn't seem to work!
I am trying to run a php file which contains the following code:
<?php
$connect = mysql_connect('localhost', 'root', 'password');
mysql_select_db('staroids', $connect);
$sql = 'INSERT INTO staroids (score) VALUES ("'.$_POST['score'].'")';
$result = mysql_query($sql);
?>
Here is the code that I run in the JavaScript file:
$.post('scripts/register.php', {score: score}, function(){}).error(function(){
alert('error... ohh no!');
});
It comes up with the following error in console when it reaches this code:
Uncaught ReferenceError: $ is not defined
I solved it with the help from the comments above and using a lot of trial and error, here is the working code:
Then where in the JavaScript function where I wanted to run the code I put:
Here is the PHP code which I then run to add the parsed through variable to the table in the database: