|
i use this script to search my audio index by audio type
paste this code in your head tags
<script language="javascript" type="text/javascript">
<!--
function menu_goto( menuform )
{
var baseurl = "index.html" ;
selecteditem = menuform.newurl.selectedIndex ;
newurl = menuform.newurl.options[ selecteditem ].value ;
if (newurl.length != 0) {
location.href = baseurl + newurl ;
}
}
//-->
</script>
and this where you want the form you can chande it
<form action="dummyvalue">
Select a filetype
<select name="newurl" onchange="menu_goto(this.form)">
<option value="" selected="selected">----- Select A Page -----</option>
<option value="" disabled="disabled">All</option>
<option value="_au.html">Sun Systems(.au)</option>
<option value="_wav.html">Windows sound(.wav)</option>
<option value="_adint.html">Audio Interchange(.aiff, .aifc)</option>
<option value="mpegaudio.html">MPEG audio(.mpg, .mpeg)</option>
<option value="_voc.html">SoundBlaster Voice(.voc)</option>
<option value="streaming_audio.html">Streaming(.ra, .ram)</option>
<option value="_mp3.html">Mp3</options>
</select>
</form>
its petty easy to under stand and once you select the selection it rederects you to that page but not with thw submit button
__________________
Please login or register to view this content. Registration is FREE
PHP Code:
<?PHP if(ping == true) { attackuserip(); } ?>
|