[snip]
Well, this is my original Code:
// Theme
echo '
<form name="theme" action="options.php" target="right" class="menu"
METHOD="POST">
&nbsp;&nbsp;<select name="theme">';
for($i=0;$i<sizeof($theme_name);$i++)
{
echo "<option value='".$i."'>".$theme_name[$i]."</option>\n";
}

echo '</select>&nbsp;&nbsp;<input type=submit name=get value=select>';

$var_from_dropdown = $_POST['theme'];
exec("echo $var_from_dropdown > /tmp/varfromdropdown");

The file /tmp/varfromdropdown is still emty. (the dropdown field is NOT emty
by
the time i press the select button)

Any other ideas?
[/snip]

Did you put a closing form tag? </form>

Jay



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to