Hi, I'm doing a login/register form and i've created a database in mysql with Phpmyadmin. Well this database i've created doesn't have pass or username and it calls golo.
I have this code:
what do I have to change? thanks
I have this code:
Code:
<? /** * Connect to the mysql database. */ $conn = mysql_connect("localhost", "your_username", "your_password") or die(mysql_error()); mysql_select_db('your_database', $conn) or die(mysql_error()); ?>
Comment