Structure of index.php:
<?php
$hostName="localhost";
$dbName="*******"; $pwd="*******";
@mysql_connect($hostName, $dbName, $pwd);
@mysql_select_db($dbName);
function clean($input, $maxLength){$input=substr(stripslashes(EscapeShellCmd($input)), 0, $maxLength); return $input;}
foreach($HTTP_GET_VARS as $varName=>$value)$getVars[$varName]=trim(clean($value, 100));
foreach($HTTP_POST_VARS as $varName=>$value)$postVars[$varName]=trim(clean($value, 100));
?>
Is it possible that some of the syntax out of date and is not compatible with the server version?