No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: After submit of form means you can get that textbox value with the help of <?php echo $_REQUEST['textbox_name'] ; ?> | |
Re: I think this code will help you .:-) [CODE]<HTML> <HEAD> <TITLE>Test Input</TITLE> <SCRIPT LANGUAGE="JavaScript"> function validate (form) { var First = form.inputbox.value; var Sec = form.inputbox2.value; alert( " Result = " +First+ "-" +Sec); document.getElementById("nm").value=First+ "-" +Sec; } </SCRIPT> </HEAD> <BODY> <FORM NAME="myform" ACTION="" METHOD="GET">Enter something in the box: <BR> … | |
Re: Sorry I m not getting your question? what you are matching ? you want in dropdown box only the the dates to be display which are in database? | |
Re: [CODE]<html> <head> <title>Checkbox Event Handler</title> <style type="text/css"> #myGroup {visibility:hidden} </style> <script type="text/javascript"> function toggle(chkbox, group) { var visSetting = (chkbox.checked) ? "visible" : "hidden"; document.getElementById(group).style.visibility = visSetting; } </script> </head> <body> <form action = "" method = "post"> <input type="checkbox" name="monitor" onclick="toggle(this, 'myGroup')" />Monitor <span id="myGroup"> <?php /* Database connectivity … |
The End.