Hi sglane,
The problem could be due to apache 2.0.x upgrade .... are there any known issues ?? i am posting my script here ... this is a stripped down my version of my actual script .... it just tries to echo the input field ....
Script:
<?php
if($term != '')
echo "Search Term:".$term."<br>";
?>
<html>
<head>
<title>System tools</title>
</head>
<body topmargin="0" leftmargin="0" bgcolor="#fee9c2">
<table border="0" width="100%" cellspacing="1" cellpadding="0">
<tr>
<td width="100%" height="29">
<strong><font style="color: black; font-style: normal; font-variant: normal; font-weight: normal; line-height: 13pt; font-size: 8pt; font-family: Arial, Verdana, Helvetica, sans-serif"> </font></strong>
</td>
</tr>
<tr>
<td width="100%" align="center" height="27">
<p align="left"><font style="COLOR: black; FONT: 8pt/15pt verdana">
<b> Search Term</b></font><b><font style="color: black; font-style: normal; font-variant: normal; font-weight: normal; line-height: 15pt; font-size: 8pt; font-family: verdana">
</font><font face="Arial" size="2">: </font></b><i>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF'];?>">
<input type="text" name="term" size="20">
<input type="Submit" value="Submit" style="font-family: Verdana; font-size: 8pt;"></p>
</form>
</i>
</td>
</tr>
<tr>
<td width="105%" align="center" height="20">
<p align="left"><font style="font-style: normal; font-variant: normal; font-weight: normal; line-height: 13pt; font-size: 8pt; font-family: Arial, Verdana, Helvetica, sans-serif" color="#FF0000"> **
</font><font style="FONT: 8pt/13pt Arial, Verdana, Helvetica, sans-serif; COLOR: black">Displays
all related tree structures (% can be used while searching).</font>
</td>
</tr>
<tr>
<td width="105%" align="center" height="20">
</td>
</tr>
<tr>
<td width="105%" align="center" height="20">
<p align="left"> <font style="COLOR: black; FONT: 8pt/15pt verdana"><b>
tree structures for :: </b></font><b><font style="font-style: normal; line-height: 15pt; font-size: 8pt; font-family: verdana" color="#FF0000">
<i><?php echo $term;?></i></font></b>
<hr width="98%" color="#FDCF7B">
</td>
</tr>
<tr>
<td width="100%" align="center">
<!-- Repeat Start -->
<!-- Repeat End -->
</td>
</tr>
</table>
</body>
</html>