Hi!
Just wanted to know if there is any special syntax to get values in <option> with a space between words.
For example:
<form action="abc.php" method="post">
<select name="study_class">
<option value="Class 1">CLASS 1</option>
<option value="Class 2">CLASS 2</option>
</select>
</form>
Can php recognize "Class 1" or "Class 2" or will it recognize only "Class" or "Class".
Thanks!