Hi to all,
am having problem doing this.
i want to show a link and not a button.when the link is clicked,then the <form></form> content is echoed for the user to make a choice,this should not open a new window,all this should take place on the same page.another problem i have is that it do not work in firefox and opera,it only work once or twicw in windows explower.
if anyone can help,i will be grateful.or if anyone have another code that can do the samething,you are welcome.
<?php
function action()
{
echo "<form action='' method='post'>
<select id='select3' name='select3' class='bodytxt'>
<option selected='selected' class='bodytxt'> -- Customise --</option>
<option>Anyone</option>
<option>Only Females</option>
<option>Only Males</option>
<option>Alumni</option>
<!--when the user select Alumni 4fm the list,a list of all the alumni will show up, and the user will pick one,from which pics willappear-->
</select>
</form>";
}
echo "<input type='button' name='Release' onclick= action(); value='Click Here' class='bodyTxt'>";
?>