hi all
im new with PHP and Mysql
so i have this stuipt errer each time
-----------------------------------------------------------------
Fatal error: Call to undefined function mysql_pconnect() in c:\Inetpub\wwwroot\lesson7\testconn.php on line 8
------------------
for this code
<?php
$username = "root";
$password = "123";
$link = mysql_pconnect("localhost", $username, $password)
or die ("Connection <font color='#FB0209'>Not</font> Complete<hr>".mysql_error());
echo "Connection <font color='#1A5816'>Complete</font>!!! ";
?>
plz help
|