Posted by Jerry Stuckle on 05/29/07 19:02
Pablo wrote:
> also this make error
>
> if (!isset($_GET['dbf']))
> {header("Location:http://www.pablo.es");}
>
> why?
>
>
What error do you get? If you get a message about headers already being
sent, it means you've output something before the call to header(). You
can't output ANYTHING - not even a blank line - before this call.
Also, to stop execution here, you need to follow it with
exit();
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|