It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming HTML Forum

Enter text and submit with Onclick

Enter text and submit with Onclick

Postby yandao1976 on Thu Oct 16, 2008 1:59 am

Hi all experts,

Currently i have a project that requires my webpage to have a text box.
After entering the text (8-digits only) and click on the ENTER button, it should bring me to another webpage (example, http://xxxxxx.asp).

Appreciate if anyone can advise or provide sample codings on this.
Thanks a lot,

CL
yandao1976
 
Posts: 3
Joined: Thu Oct 16, 2008 1:54 am

Postby rangana on Fri Oct 17, 2008 12:28 am

Why need an onclick event? You can make use of the action attribute of the form:
Code: Select all
<form action="http://www.google.com/search">
<input type="text" name="q">
<input type="submit" value="Enter">
</form>
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines

Postby yandao1976 on Fri Oct 17, 2008 12:42 am

Hi,

Maybe i re-phrase my question.
When i click on the BUTTON, it will bring me to a site, retrieving information from the database.
The text which i have entered in the text box will be pass into into the URL as a key field to extraction the information from the database.

Example:
Text entered : '20000001'.
The URL will append this text field into "http://xxxx/xx.asp?reqno=" to become http://xxxx/xx.asp?reqno=2000001, and display the information.

Please advise, thanks
yandao1976
 
Posts: 3
Joined: Thu Oct 16, 2008 1:54 am

Postby rangana on Fri Oct 17, 2008 12:54 am

You can use the get method:
Code: Select all
<form action="#" method="get">


...In practice:
Code: Select all
<form action="http://www.google.com/search" moethod="get">
<input type="text" name="q">
<input type="submit" value="Enter">
</form>


Now, you need server-side (PHP) to process the get-data.

Hope that makes sense.
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines


Who is online

Users browsing this forum: No registered users and 5 guests