I am trying to execute the script below :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!-- Creation Date: <?=Date("d/m/Y")?> -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Dev-PHP 1.3.0">
<title>Document Title</title>
</head>
<body>
<? if(!$submit) { ?>
<form method="post" action="<? echo $PHP_SELF;?>">
<input type="text" name="text1"> <BR>
<input type="text" name="text2"> <BR>
<input type="submit" name="submit" value="Send Form">
</form>
<? }
if($submit)
echo "<TABLE BORDER=1> <TR> <TD> $text1 </TD> <TD> $text2 </TD> <TR> <TABLE>";
?>
</body>
</html>
But nothing! However, when i execute it in a remote server like tripod everything is ok!
What the hell is the problem? In addition, i cannot access my mysql.
Is the whole Installation Kit wrongly configured?
Please guys help me!!!