mysql_connect() problem

gesf

Active member
If you're getting errors with the code, here's the problem:

This is wrong:
mysql_connect('localhost', 'username', 'password);

This is right:
mysql_connect('localhost', 'username', 'password');

* Please, next time use suggesting posts' title like 'mysql_connect() problem' or whatever instead of 'help urgent'!
 
Back
Top