Hai all im new to this forum and begin to learn php.
Here is a problem which may be very simple to you but it is problem to me.
how can choose SELECT tag from a form if there are multiple SELECT tags?
for example[code=html]<form name="form" id="form" action= "page2.php" >
<select name="name1" id="id1" onchange="">
<option>item1 </option>
</select>
<select name="name2" id="id2" onchange="">
<option>item1 </option>
</select>
<select name="name3" id="id3" onchange="">
<option>item1 </option>
</select>
</form>[/code]
How can i select SELECT tag for ex name2 in page2.php?
Thanks for advance.
Here is a problem which may be very simple to you but it is problem to me.
how can choose SELECT tag from a form if there are multiple SELECT tags?
for example[code=html]<form name="form" id="form" action= "page2.php" >
<select name="name1" id="id1" onchange="">
<option>item1 </option>
</select>
<select name="name2" id="id2" onchange="">
<option>item1 </option>
</select>
<select name="name3" id="id3" onchange="">
<option>item1 </option>
</select>
</form>[/code]
How can i select SELECT tag for ex name2 in page2.php?
Thanks for advance.
Comment