Input my php in mysql without repeat?

帅比萌擦擦* 提交于 2019-12-02 13:07:41

I am surprised that this does not throw any errors. One as Barmar mentioned, you cannot mix sqli and sql functions.

Also logically, I do not see you select any database.

Try this first

$con=mysqli_connect("localhost","my_user","my_password","my_db") or die('error message');

then use

mysqli_query($con,"your query here");

let me know the results.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!