Hey!

I think you used header() after put out some data or php installed on server
as CGI. Because send header possible only if php installed as apache module.

You can use custom function which use javascript for redirection. But it
works if browser of client support javascript:

function redirect(path) {
    echo '<script type="text/javascript">window.location='.path.'</script>';
    exit();
}

--

"Cbharadwaj" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Hi

I have used
Header (Location:PATH)  function  for redirection.
it is giving some errors.
is there any other method other than HEADER() funtion for redirecting ?


Bharadwaj

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to