Thread: Desperate
View Single Post
Old Oct 14th, 2004, 3:50 AM   #4
Berto
Programming Guru
 
Join Date: Aug 2004
Posts: 1,022
Rep Power: 6 Berto is on a distinguished road
Send a message via AIM to Berto Send a message via MSN to Berto
HTML code:

must have in somewhere

<form name="name" method="get" action="page2.php">
Input name: <input type="text" name="uName" />
</form>



create a page2.php

and put into it this.


$_GET["uName"]; // produces teh text string from the previous page.

or if using a java servlet/jsp page its

request.getParameter("uName");

for any of the other just look up

GET and POST methods for the equivilant language.
__________________
"Put your hand on a hot stove for a minute, and it seems like an hour. Sit with a pretty girl for an hour, and it seems like a minute. THAT'S relativity."

- Albert Einstein
Berto is offline   Reply With Quote