I'm having more than one drop down menu i want to secure them all from unvalid data ex:
[HTML]<select name="Category" size="5" id="Category">
<option>Compute rs & Networking</option>
<option>Camer as & Photo</option>
<option>Consume r Electronics</option>
<option>Jewel ry & Watches</option>
<option>Real Estate</option>
</select>
<select name="anotheron e" size="5">
<option>Compute rs & Networking</option>
<option>Camer as & Photo</option>
<option>Consume r Electronics</option>
<option>Jewel ry & Watches</option>
<option>Real Estate</option>
</select>[/HTML]
if i choose from one of these options give another select tag have many other options etc... , how can i secure them all by simple PHP code.
[HTML]<select name="Category" size="5" id="Category">
<option>Compute rs & Networking</option>
<option>Camer as & Photo</option>
<option>Consume r Electronics</option>
<option>Jewel ry & Watches</option>
<option>Real Estate</option>
</select>
<select name="anotheron e" size="5">
<option>Compute rs & Networking</option>
<option>Camer as & Photo</option>
<option>Consume r Electronics</option>
<option>Jewel ry & Watches</option>
<option>Real Estate</option>
</select>[/HTML]
if i choose from one of these options give another select tag have many other options etc... , how can i secure them all by simple PHP code.
Comment