Is there anyway so a user can input some data into a form (like "555"), click on "sumbit" and this input automaticlly appears in each other form on the following page ? Assuming the following page is another site that is not yours and you cant put any script in it. Something like the "Google toolbar auto form filler" - you sumbit your username ones and it appears on any form and website asking for it. Good answers will be rep.ped
you need to use a server side script. either use the Post or Get method to pass data from your original page to the second and the corresponding function to retrieve it. original page: <form method="post" action="your_site_address/secondpage.php"> <input name="figure" type="text" /> </form> secondpage.php: <?php if(isset($_POST['figure']){ echo $_POST['figure']; } ?>