First the user will be asked the number of time he/she wants to execute the menu bar in the same page (without opening a new page).
Please help me???
<form action="InsertFunctionComponent.php" method="GET">
<br><br><b>How many times you want</b>
<input type="text" name="number" Size = "30">
<br><br>
<?php
if($submit)
{
?>
<br>Select any of the following Function<br><br>
<select name = "FunctionMenu" Multiple>
<?php
foreach ($Function_Name as $Existing_Function)
print " <option value=\"$Existing_Function \">$Existing_Function</option>";
?>
</select>
<input type="submit" value="Submit" name="submit">
<input type="reset" value="Reset" name="Reset">
</form>
<?php
}
else
{
---do something---
}
?>