Monday 5 December 2016

php - Deprecated: mysql_query()

i just update my server. it showing an error today




Deprecated: mysql_query(): The mysql extension is deprecated and will be removed in the >future: use mysqli or PDO instead in C:\wamp\www\work\db\dbfields - Copy.php on line 33




my dbfields - Copy.php page is






mysql_query("insert into user(name,address) values('$name','$address')");





i create 2 columns (name&address), need to insert the value of var($name& $address).

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...