Hello group,
I have switched to linux and PHP so totally new to this field. Please
help me with my question. I have an HTML code which contains a
drop-down control on it using
<select name=selected_g roup>
<option> Gropu 1</option>
<option> Group 2</option>
and ...
</select>
<?php
$group = $_POST['selected_group '];
?>
meantime, I'm my php code using $group = $_POST['selected_group '] but
nothing will assinged to the $group variable. I tried different html
codes which were on web for learning purpose but didn't work out!
please let me know if you have any suggestions.
Thanks,
Amit
Comment