Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How else can I conect to mysql?

Retrieving Data

How else can I conect to mysql?

by  thumbelina  Posted    (Edited  )
Code:
<?php $conn = mysql_connect("localhost","username","password");
	mysql_select_db("databasename",$conn); ?>[\code]
this is the simplest way to connect if everyone is connecting with the same username. If this doesn't work look at the password that your are using. Try using the password that lets you access the database instead of the server password. If the database doesn't have a password just use ' "" '.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top