AW: [PHP] page_title ... Erik Gjertsen

2004-05-10 Thread Shahed, Raja
Erik Gjertsen wrote html head title ? echo $page_title; ? /title /head body ?php $page_title = Welcome; ? h1 Now you see it /h1 /body /html Rev. Raja shahed -Ursprüngliche Nachricht- Von: Erik Gjertsen [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 8. Mai 2004 00

Re: [PHP] page_title

2004-05-08 Thread Kim Steinhaug
Is it me or is the sollution here incredible simple? ?php $page_title = Welcome; ? head title?=$page_title?/title -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them

Re: [PHP] page_title

2004-05-08 Thread Daniel Clark
Think you want ?php $page_title = Welcome; echo $page_title; ? I have write following code: ?php $page_title = Welcome; ? But I can not see Welcome on top of the page. Can someone tell me why I not can see it? Thanks Erik Gjertsen -- PHP General Mailing List (http://www.php.net

Re: [PHP] page_title

2004-05-08 Thread Erik Gjertsen
Thanks it help Erik Gjertsen Kim Steinhaug [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is it me or is the sollution here incredible simple? ?php $page_title = Welcome; ? head title?=$page_title?/title -- -- Kim Steinhaug

[PHP] page_title

2004-05-07 Thread Erik Gjertsen
I have write following code: ?php $page_title = Welcome; ? But I can not see Welcome on top of the page. Can someone tell me why I not can see it? Thanks Erik Gjertsen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] page_title

2004-05-07 Thread BAO RuiXian
Erik Gjertsen wrote: I have write following code: ?php $page_title = Welcome; ? But I can not see Welcome on top of the page. Can someone tell me why I not can see it? Can you see it by reading the source of the page?:) Best Bao Thanks Erik Gjertsen -- PHP General Mailing List

Re: [PHP] page_title

2004-05-07 Thread Erik Gjertsen
No I cant see it on het sorurce. Butt it coms up with the hole path to the site on the topp of the page and in seek feld on the site http://www.gjertsen.as/Skole22/Kapittel6/index5.php head title/title meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /head body ?php $page_title

Re: [PHP] page_title

2004-05-07 Thread Curt Zirzow
* Thus wrote Erik Gjertsen ([EMAIL PROTECTED]): head title/title um, your title of you page goes here. Curt -- I used to think I was indecisive, but now I'm not so sure. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] page_title

2004-05-07 Thread deseavers
echo title$page_title/title; -Original Message- From: Curt Zirzow [EMAIL PROTECTED] Sent: May 7, 2004 4:47 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] page_title * Thus wrote Erik Gjertsen ([EMAIL PROTECTED]): head title/title um, your title of you page goes here. Curt -- I used

Re: [PHP] page_title

2004-05-07 Thread John W. Holmes
Erik Gjertsen wrote: head title/title meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /head body ?php $page_title = Welcome; Hmmm... you're title doesn't show up? Are you using sessions? Is safe_mode on or off? Is html_title_mode on or off in your php.ini file? -- ---John