Posted by J.O. Aho on 06/18/06 17:21
Charlie wrote:
> J.O. Aho wrote:
>> 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 */
>> ?>
> You would use the following code:
> <?PHP
> if($correct)
> {
> header("Location: http://website.ext");
> }
> else
> {
> /* Code to be executed if not correct */
> }
> ?>
>
exit negates the need of else.
//Aho
Navigation:
[Reply to this message]
|