I'm testing PHPRunner under IIS,MysQL and PHP5 and have done all the copying and amendments corresponding to the PHP FAQ page.
This are my folders, where I have put them
C:/PHP
C:/MySQL
C:Inetpub/wwwroot
This is how include/dbconnection.php looks like with absolut values in the connect string
<?php
function db_connect()
{
global $host,$user,$pwd,$errstr,$sys_dbname,$port;
$strhost=$host;
if($port && $port!=3306)
$strhost=$strhost.":".$port;
$conn = mysql_connect("localhost","root","caidoz");
if (!$conn || !mysql_select_db($sys_dbname,$conn))
{
trigger_error(mysql_error(), E_USER_ERROR);
}
return $conn;
}
I realy hope someone has any idea how to get around this problem.
Probably there´s something I have not done properly.