|
Posted by J.O. Aho on 06/27/56 11:52
~ryba wrote:
> After "login", "password" (php code) I want the www.something.xx to be
> opened automatically. What syntax do I need?
> Great Thanks - Mr Thin
>
>
/* No output before this line !!! */
if($login_ok) {
header("Location: http://www.something.xx/");
exit;
}
/* After this line output is allowed */
echo "Login failed!!!<br>\n";
//Aho
[Back to original message]
|