Jump to content

simple php doubt


ramu_rp2005

Recommended Posts

I've a code like this below:

<BODY background=images/ltgray_lines1.gif text=000000> <br><br><br><br><br><font size=2 face="Garamond">

<FORM method=GET name="searchform"><center>
<table>
<tr><td>Search</td>
<td><select name="pattern" >
<option value="streamtype">Type</option>
<option value="streamname">Name</option>
<option value="videopid"> Vid Pid</option>
<option value="audiopid">Aud Pid</option>
<option value="pcrpid">Pid</option>
<option value="clockrate">Clock Rate</option>
<option value="videotype">ideo type</option>
<option value="ac3bitrate">A3 Bit</option>
<option value="ac3mod">A3 Mod</option>
<option value="samplerate">Sam Rate</option>
<option value="resolution">Res</option>
<option value="profile">Prof</option>
</select></td></tr><br><br>
</table>
<br><br>
<input type="button" value="Search" onclick=selectstr()>
</center>
</FORM> </font>
</BODY>



Now my doubt is how can i take the value of the combo and submit it to another form.My friend gave the cod e below. but can anyone explain what does it mean.the code is below:
wht does "str=str=" mean.

function selectstr()
{

frm=document.searchform
str=str = frm.pattern.options[frm.pattern.selectedIndex].value
location.href="setstring.php?string="+str
}
Link to comment
https://forums.phpfreaks.com/topic/5007-simple-php-doubt/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.