[snip]
I need to send the data from a form without taking the surfer to that page.
ie:
form on ' formPage.php '
with
<form name='foo' method='post' action='../newUser.php'>
but leave the user on ' formPage.php'
Any way to do that?
[/snip]

At the end of newUser.php do a header redirect, i.e.

header("Location: formPage.php"); exit;

Make sure that newUser.php does not send anything to output before the
header.

HTH!

Jay



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to