New To MySQL, Need Help!

liunx

Guest
I am new to MySQL, and I don't know how to set the username and password. Someone Please Help Me!

Thanks,
Kevin Naiajust open your MySQLadmin which should be located in your C:\mysql\bin and it will prompt you for a user name and password.

:)what if it is on the net Techtro? ;)

to start a script tht has a connection to mysql you do this

mysql_connect(localhost, username, password) or die ("Unable to connect to database. Please try again.");
mysql_select_db("DBname") or die ("Unable to connect to database. Please try again.");
 
Top