Jump to content

[SOLVED] problems with $_POST from drop down menu


daveh33

Recommended Posts

echo "<form method=\"post\" action=\"?rid=$rid\">
Message: <input type=\"text\" name=\"message\" length=\"80\"><p>
Send to : <select name=\"to\">
<option value=\"All\"><selected>All</selected>";
while($row = mysql_fetch_array( $result1 )) {
$users = $row['username'];
echo "<option value=\"users\">$users</option>";
}
echo "</select>
<input type=\"hidden\" value=\"$rid\" name=\"rid\">
<input type=\"hidden\" value=\"$rid\" name=\"submitted\">
<input type=\"submit\" value=\"Send Message!\" name=\"submit\"><P>
&nbsp <p>";

 

why would $_POST['to'] no get the result of the drop down menu???

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.