Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'id' in 'where clause''

后端 未结 2 462
深忆病人
深忆病人 2021-01-26 10:40


        
2条回答
  •  面向向阳花
    2021-01-26 11:26

    this will sort the problem you have , I had a similar issue but i manage to fix it.

    {$sql = "DELETE FROM admin where id =".$_GET['id'];} 
    

提交回复
热议问题