Re: [PHP] set var in PHP clarified

2001-07-18 Thread Gunther E. Biernat
Jessica, I used that technique before PHP was available (for all readers, the key term here is Server Side Includes, e.g. http://httpd.apache.org/docs/howto/ssi.html.html). With PHP you're a lot more flexible so that you should get rid of your shtml structure, especially as PHP is much faster

Re: [PHP] set var in PHP

2001-07-18 Thread Slavomir Slizik
Hello, it isn't regular html, it is only server-parsed stuff .. Server Side Includes. You won't need that in PHP, just do: blah blah blah .. SSL On Wed, 18 Jul 2001, jessica lee tishmack wrote: > In html, I can do > > > > How do I do this in PHP? > > Thanks, > Jessica > > > -- > PHP

Re: [PHP] set var in PHP clarified

2001-07-18 Thread Sheridan Saint-Michel
You would do or $title"; ?> Hope that helps Sheridan - Original Message - From: jessica lee tishmack <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2001 10:50 AM Subject: [PHP] set var in PHP clarified > Thanks for the prompt replies...but I think I shoul

Re: [PHP] set var in PHP clarified

2001-07-18 Thread Jon Yaggie
- Original Message - From: "jessica lee tishmack" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2001 10:50 PM Subject: [PHP] set var in PHP clarified > Thanks for the prompt replies...but I think I should clarify... > > In regular html, I would do this: > >

Re: [PHP] set var in PHP

2001-07-18 Thread Jon Yaggie
t;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2001 10:47 PM Subject: RE: [PHP] set var in PHP > > In html, I can do > > > > I've actually never seen this in html... > > > How do I do this in PHP? > > but is this what you are

RE: [PHP] set var in PHP

2001-07-18 Thread Chris Boget
> In html, I can do > I've actually never seen this in html... > How do I do this in PHP? but is this what you are talking about? $TITLE = "some title here"; ? Or am I missing something? Or perhaps you want to keep it an html thing... echo ""; ? Chris -- PHP General Mailing List (ht

RE: [PHP] set var in PHP

2001-07-18 Thread scott [gts]
u $TITLE = "some title here"; > -Original Message- > From: jessica lee tishmack [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 18, 2001 11:28 AM > To: php > Subject: [PHP] set var in PHP > > > In html, I can do > > > > How do I do this in PHP? > > Thanks, > Jessica > >