Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
570 B

  1. <?php
  2. //5-16-17
  3. if(isset($_POST['game_new_score']))
  4. {
  5. $i_game = mysqli_real_escape_string($dbc, trim($_POST['game']));
  6. $i_user_id = mysqli_real_escape_string($dbc, trim($_POST['user_id_score']));
  7. $i_score = mysqli_real_escape_string($dbc, trim($_POST['score_validate']));
  8. $q = "insert into scores(game, user_id, score) values('$i_game','$i_user_id','$i_score')";
  9. $r = mysqli_query($dbc, $q);
  10. echo("<meta http-equiv='refresh' content='1'>");
  11. }
  12. ?>