Hey Guys,
I am stuck big time. I have the simplest script in the world. If you take EVERYTHING out and just pass hidden fields with values, either using get or post, the values are not being passed. If I echo print_r($HTTP_POST_VARS); I get:
Array ( [mls+AAA-] => 113709+AAA-}p$ [action+AAA-] => popForm+AAA- [SellPrice+AAA-$] => 10000+AAA-F [SellDate+AAA-] => 12+AAA-ce+AAA-$ [Radius+AAA-] => 3+AAA-te+AAA- [Submit+AAA-] => OK+AAA- )
For the life of me I can't figure out what could be wrong with the form:
<code>
<html>
<head>
<TITLE>Map Comps</TITLE>
</head>
<body>
<form action="mapComps.php" method="post">
<input type="hidden" name="mls" value="113709">
<input type="hidden" name="action" value="popForm">
<table width="90%" cellpadding="2" cellspacing="2">
<tr>
<td colspan="2" align="center" bgcolor="silver">Enter Criteria or Choose Default</td>
</tr>
<tr>
<td align="center" colspan="2"><table width="100%"><tr>
<td>Sell Price: </td>
<td>
<select class="ontable" name="SellPrice" size="1">
<option value="10000">+/- $10,000</option>
<option value="10000" selected="selected">+/- $15,000</option>
<option value="20000">+/- $20,000</option>
<option value="25000">+/- $25,000</option>
<option value="30000">+/- $30,000</option>
<option value="40000">+/- $40,000</option>
<option value="50000">+/- $50,000</option>
</select>
</td>
</tr>
<tr>
<td>Sell Date: </td>
<td>
<select class="ontable" name="SellDate" size="1">
<option value="1">Last Month</option>
<option value="3">3 Months</option>
<option value="6">6 Months</option>
<option value="9">9 Months</option>
<option value="12" selected="selected">12 Months</option>
</select>
</td>
</tr>
<tr>
<td>Radius (miles): </td>
<td>
<select class="ontable" name="Radius" size="1">
<option value=".5">.5</Option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3" selected="selected">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
<option value="25">25</option>
</select>
</td></tr></table></td>
</tr>
<tr>
<td align="right"><input type="Submit" name="Submit" value="OK"></td>
<td align="left"><input type="button" name="cancel" value="Cancel" onClick="self.close()"></td>
</tr>
</table>
</form>
</body>
</html>
</code>
Any ideas?
Lisa