Log in

View Full Version : Input field help.



SDB
12-05-2007, 08:35 AM
Hey everyone.
I've got a pretty simply question. (well i hope it is!)

Basically i'm adding a sort of search feature to my site.

I have a page with an input field and a button.
Basically the user will enter a term into the field, then click the button!
this will take them to another page, where i have a special script. How do i input what they entered on the first page into my script on the second page?

Hope someone can help.
Thanks

remp
12-06-2007, 10:08 AM
It really all depends on what script you are using.... if you post the code that would help alot...

Twey
12-06-2007, 10:29 AM
<form action="otherpage.php">
<div>
<input type="text" name="v">
<input type="submit">
</div>
</form>
<?php
print $_GET['v'];
?>