Drop Down Menus

Hello everyone, I have one simple question. My drop down menu has all the links put in, post, & target filled out. However, it doesn’t fully work, unless I have something in the ‘Action’ area of the form.
Could someone please tell me what I should put for the form “Action.” The tutorial suggested “…/cgi-bin/redirect.pl” but it led to an error page. Am I suppose to configure this through my cpanel? If so, how do I do that? :q: :q: :q:
Thank you greatly.

You should put the file that the data you select will be proccessed

For ex:
Let’s say that in mail.html you have the form and action=“sendmail.php” you enter your name,message and etc.When you click submit button, all the information you typed in is carried yo sendmail.php and it processes the data.(Send mail to you or someone)

If you explain in detail what you are trying to do, i can help you

Thank you for responding Overflow. My problem is specifically this:
On one of my web pages, I have installed a drop down menu. For ex.- There is form box with links to the other pages on my site. On the form box, the visitor clicks the ‘down arrow’ on the side of the box & chooses the link the wish to see, & then click 'go.'
To the best of my knowledge, that is called a drop down menu.
My problem is, the javascript is put in & everything… but the menu won’t work unless I put an ‘Action’ path. :puzzle: I have no clue what to put. If I’m suppose to configure it through my cpanel, could you please tell me how.:h:

Thank you again.

I am not good at js but here is a similar code you might use.

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=“Content-Type” content=“text/html; charset=windows-1254”>
<script language=“JavaScript” type=“text/JavaScript”>
<!–
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location=’"+selObj.options[selObj.selectedIndex].value+"’");
if (restore) selObj.selectedIndex=0;
}
//–>
</script>
</head>

<body>
<form name=“form1” method=“post” action="" onSubmit=“MM_jumpMenu(‘parent’,this,0)”>
<select name=“menu1” onChange=“MM_jumpMenu(‘parent’,this,0)”>
<option selected>Select a Page</option>
<option value=“index.html”>Main Page</option>
<option value=“pictures.html”>Pictures</option>
</select>
</form>
</body>
</html>