Try:
<?php
    session_start() ;
    session_destroy() ;
    header("Location: http://$HTTP_HOST/mall/menu.php";) ;
?>

You need to capitalize the 'L' in "Location" (HTTP headers are
case-sensitive).

HTH,
Colter Reed

On 9/12/01 5:54 AM, in article [EMAIL PROTECTED],
"Its Me" <[EMAIL PROTECTED]> wrote:

> <?php
> session_start();
> session_destroy();
> header("location:http://$HTTP_HOST/mall/menu.php";);
> ?>
> 
> i wanna make this my log out page.
> it works without the:
> header("location:http://$HTTP_HOST/mall/menu.php";);
> 
> i tried to put it befor  session_destroy()
> but still didn't work???


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to