Thanks,
Ken
----------------------------------------
Here's the relevant html:
<form action="handler.php" method="post" name="select_view_form">
<table width="90%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td class="labelTextBold" width="100px">Publication:</td>
<td class="labelText">
<select name="publication" onChange="MenuSubmit();">
<option value="none">none</option>
<option value="1">Ashland TAB</option>
<option value="2">Canton Journal</option>
</td>
</tr>
<tr>
<td class="labelTextBold" width="100px">View:</td>
<td class="labelText">
<select name="view" onChange="MenuSubmit();">
<option value="none">none</option>
<option value="1">Pub Status</option>
<option value="2">Pub Notes</option>
</select>
</td>
</tr>
</table>
</form>
And here's the PHP handler script:
<?php
if ($view)
{
echo $publication."\n".$view;
}
else
{
echo "no values supplied";
}
?>-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

