MySQL Forums
Forum List  »  PHP

Re: Data are not inserted into database table, I donno where is the problem?
Posted by: Barry Galbraith
Date: January 19, 2016 05:16PM

php is case sensitive.
MySQL_Connect() doesn't exist.
mysql_connect() does exist.
Similarly, MySQL_Query() doesn't exist but mysql_query() does.

mysql has been deprecated and you shouldn't use it. You should use mysqli interface instead.

Check the php manual at the php site http://php.net/docs.php

Good luck,
Barry.

Options: ReplyQuote


Subject
Written By
Posted
Re: Data are not inserted into database table, I donno where is the problem?
January 19, 2016 05:16PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.