Hi.
I installed mysql and a webserver lighttpd, and php-myadmin.
But I'm have some trouble making it work together.
The webserver runs, and I can access it from a browser, and the sql-server runs ok too.

Example:
php script "test.php"
<?php
$con = mysql_connect("localhost","root","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("testdb", $con);
mysql_query("INSERT INTO testtable ( id,data ) values ('100','funnystuff')");
mysql_close($con);
?>

and when I use this command: php test.php, it inserts the values,
but if I run it from a browser, it doesn't work ? just an empty page

anyone have any idea whats wrong ?
thanks in advance