if i have a form:
print("<form action=\"./hello.php?submit=yes\" method=\"post\"> <input type=\"text\" name="text">");
can I send the values of "text" to two different pages such as hello.php and goodbye.php?
well... you can use javascript to open an additional window to load goodbye.php when the form is submitted to hello.php
or you can make hello.php redirect to goodbye.php once it has read the value of text.
-sridhar