How to pass value of one page's textbox to another page's textbox ?

Hi Friends,

I have one requirement where I have one textbox & submit button, when I click that button by filling value on that textbox I need it will redirect to different page & the value of that textbox automatically come into this page textbox. If any one have any idea kindly help me.

Regards,
Premashish

form.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<form method="POST" action="receive.php">
<input type='text' name='test2'><br/>
<input type='submit' name='btnsubmit'>
</form>
</body>
</html>

receive.php
[php]

This is what you entered on your previous Page.

[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service