Hi!
I need help making a connection to a mysql database. I am running Win98 with an xitami web server. I think the problem is the php3.ini at c:\windows or the win-regestry. It seems that the installation of php_iis_reg.inf doesn't work. rightclick - install - no results.
Perhaps anybody could send me a workable .inf
or a link how I have to change the win.reg
Thanks a lot
certon
Fatal error: Call to unsupported or undefined function mysql_connect() in cgi-bin/test97.php3 on line 2
[file test97.php3]
<?php
mysql_connect(localhost,root);
mysql_select_db("kundendb");
$result = mysql_query("SELECT user_id, fullname FROM users");
while($row = mysql_fetch_array($result)) {
echo $row["user_id"];
echo $row["fullname"];
}
;
?>