kireol
RealPoor Master of Posts

Joined: 02 Aug 2003 Posts: 9517
Location: Royal Oak, MI
|
Posted: 08/23/03 - 17:18 Post subject: PHP and MySQL problem
|
|
|
I just installed PHP and mysql. it cant seem to connect, even with a simple program. what am i doing wrong?
| Code: |
<?php
/* Connecting, selecting database */
printf("<HTML>\n<BODY>\ntesting<BR>");
$link = mysql_connect("localhost", "mylogin", "mypassw") or die("Could not connect : " . mysql_error());
print "Connected successfully";
printf("</BODY>\n</HTML>");
?>
|
|
|