Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
~2K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for anupama385

After submit of form means you can get that textbox value with the help of <?php echo $_REQUEST['textbox_name'] ; ?>

Member Avatar for krishna501
0
291
Member Avatar for ErangaD

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> …

Member Avatar for ErangaD
0
153
Member Avatar for mittul

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?

Member Avatar for ddymacek
0
912
Member Avatar for jacob21

[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 …

Member Avatar for AAREN1975c
0
523

The End.