MYSQL not receiving data from PHP

前端 未结 6 1889
隐瞒了意图╮
隐瞒了意图╮ 2021-01-25 02:21

I am trying to send data from input to a my sqldata base. Here is the coding for it trying to send the information to the database. It doesn\'t appear in the database; what is w

6条回答
  •  一向
    一向 (楼主)
    2021-01-25 03:02

    You are mixing mysql and mysqli. Change:

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

    To:

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

    Also see How can I prevent SQL injection in PHP and PHP: mysqli_stmt - Manual because using POST is not always safe as people can do SQL injection.

提交回复
热议问题