Posted by J.O. Aho on 06/18/06 09:54
Java Buai wrote:
As this has nothing to do with SQL, I added alt.php as newsgroup and set
follow-up to alt.php too.
> I am new to php but realy loving it . I would like my code to tell the
> browser to load a new page at a given URL. In java you could create a
> variable of type URL.
>
> It should work something like this.
>
> if (correct)
> getURL(http://www.youarecorrect.com); //I want this line, if executed, to
> open the given web page.
> else
> echo "Incorrect";
>
> How could I do this in php?
<?PHP
if($correct) {
header("Location: http://www.example.com/");
exit;
}
/* put what you want to do if not correct under here */
?>
> (had to dump java because pop up blockers in ie complains about it)
I suggest you dump it too and get a proper browser.
//Aho
Navigation:
[Reply to this message]
|