i installed apache 5 and php 5 in my system. In the remote system(server9) mysql server is there .through sqlyog mysql is connection in my system but through php it is not connectiong.My operating system is windows 2000 professional.
i wrote code like this
<?php
$strDB=mysql_co nnect("server9" , "admin", "admin");
mysql_select_db ("lms",$strD B); //lms database name
mysql_close($st rDB);
?>
it is saying that fatal error:call to mysql_connect() is undefined
i wrote code like this
<?php
$strDB=mysql_co nnect("server9" , "admin", "admin");
mysql_select_db ("lms",$strD B); //lms database name
mysql_close($st rDB);
?>
it is saying that fatal error:call to mysql_connect() is undefined
Comment