Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL non riceve dati da PHP

Stai mescolando mysql e mysqli. Modifica:

mysql_query("INSERT INTO 'mensscore', (Name, Club, Level, App, Score);
    VALUES ('".$a."',
            '".$b."',
            '".$c."',
            '".$d."'
            '".$g."')");

A:

mysqli_query($con, "INSERT INTO `mensscore` (Name, Club, Level, App, Score)
    VALUES ('$a',
            '$b',
            '$c',
            '$d',
            '$g'
    );");

Vedi anche Come posso prevenire l'iniezione SQL in PHP e PHP:mysqli_stmt - Manuale perché l'uso di POST non è sempre sicuro poiché le persone possono eseguire SQL injection.