Hello, Unfortunatley again i have got more php problems, only simple php scripts appear to excute for some strange reason. Look at this: URL: http://alexserver.redirectme.net/test2.php SOURCE: PHP: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Test Page</title> </head> <body> <?php echo 'hello'; ?> </body> </html> More complex php script: URL: http://alexserver.redirectme.net/test.php SOURCE: PHP: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Test Page</title> </head> <body> <?php echo '<a href="?page=test">test</a> <a href="?page=test2">test2</a>'; if ($_GET['page'] == "test") { echo "test!; } elseif ($_GET['page'] == "test2") { echo "test 2!" } ?> </body> </html> On the second script it just gives a blank page not even an error message, Hopfully you guys can help me fix this again, Thanks, Alex
Please check you php.ini file to make sure that that displying of errors is enabled. Also have a look at the apache error log file in the log directory of the website.