im unexperience at php so please bear with me, i have wiped up a simple web form that post to a external website, code looks like:
<FORM METHOD="POST" ACTION="http://www.foo.com/login.php">
<input type="hidden" name="email" value="foo@bar.com">
<input type="hidden" name="password" value="foo123">
<input type="submit" name="submit" value="Login">
</FORM>
one it is posted, the site takes me to a account page, is there a way that i could redirect myself elsewhere after authentication, say www.google.com or another script of my own...
tia