<select> tag problem
Posted: Sun Jun 28, 2009 6:28 pm
I am creating a dynamic page where a combobox name is dynamically generated and dynamically name and id property set.
I am using GET method to redirect this value to the same page and when i tried to read the value in PHP by $_GET['select_myname.co.in'] it returns me null, So is that mean that i cannot use "."(Period) in name of select, but i want to there is no other way for me from that... Plz halp me.
Code: Select all
<select name="select_myname.co.in" id="domain_1">
<option value="1">1 yr(s)</option>
<option value="2">2 yr(s)</option>
<option value="3">3 yr(s)</option>
<option value="4">4 yr(s)</option>
<option value="5">5 yr(s)</option>
<option value="6">6 yr(s)</option>
<option value="7">7 yr(s)</option>
<option value="8">8 yr(s)</option>
<option value="9">9 yr(s)</option>
<option value="10">10 yr(s)</option>
</select>