I want a text box value to be submitted to another text box in another php script..
I know this is possible
<form action = "receiver.php"> <input type = "text" name = "content"> <input type = "submit" value = "send"> </form>
<form name = "form1"> <input type = "text" value = "<?php echo $content ;?>"> </form>