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