On 15 Sep 2008, at 12:10, Jason Pruim wrote:
On Sep 15, 2008, at 7:05 AM, Alain Roger wrote:
thanks for info
On Mon, Sep 15, 2008 at 1:03 PM, Stut <stuttle@xxxxxxxxx> wrote:
On 15 Sep 2008, at 11:57, Alain R. wrote:
how in PHP can i create the similar header as following ?
<head>
<base href="www.mywebsite.com">
</head>
Assuming you mean with the header function, you can't. There is
no HTTP
header equivalent of the base tag.
It would be possible though if your php page is displaying html or
at least spitting out the html to be displayed somewhere to use
HEREDOC. Something like this:
echo <<<HEAD
<head>
<base href="www.mywebsite.com">
</head>
HEAD;
the only gotcha is that HEAD; as to be on it's own line AND at the
start of the line to work.
That's not an HTTP header. I had assumed minimal PHP knowledge on the
part of the OP. If he doesn't even know how to output HTML he needs
to start with a very very basic beginners tutorial.
-Stut
--
http://stut.net/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php