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.

21 lines
456 B

<?php
/*function XSTR_LOG($chaine)
{
$fp = fopen("vraipagelogggggg.log", "a+");
fwrite($fp, $chaine . "\n");
fclose($fp);
}*/
session_start();
require_once("ConnexionBD.php");
$db = new MyDB();
$score = $_POST['score'];
$nom = $_POST['nom'];
$modeJeu = $_POST['modeJeu'];
$requete = "INSERT INTO HIGHSCORE (nomjoueur, score, modeJeu) VALUES ('$nom','$score','$modeJeu')";
$resultat = $db->query($requete);
if (isset($resultat)) echo "1\n";