RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
Thanks, I was looking for that => Ben -Original Message- From: mike cullerton [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 10:01 PM To: 'PHP General List (E-mail)' Subject: Re: [PHP] Question about how to do this... on 7/8/01 10:58 PM, Steve Werby at [EMAIL PRO

Re: [PHP] Question about how to do this...

2001-07-08 Thread mike cullerton
on 7/8/01 10:58 PM, Steve Werby at [EMAIL PROTECTED] wrote: > "Ben Bleything" <[EMAIL PROTECTED]> wrote: >> I believe (and I'm sure someone will correct me if I'm wrong) that >> whenever you 'include' or 'require' a file, it drops to regular HTML >> mode... so, yes, you will need to use >> tags

Re: [PHP] Question about how to do this...

2001-07-08 Thread Steve Werby
"Ben Bleything" <[EMAIL PROTECTED]> wrote: > I believe (and I'm sure someone will correct me if I'm wrong) that > whenever you 'include' or 'require' a file, it drops to regular HTML > mode... so, yes, you will need to use > tags at the ends => Think of the behavior of include() as copying the e

RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
ris Cocuzzo [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 9:25 PM To: PHP General List (E-mail) Subject: RE: [PHP] Question about how to do this... ok so if I use this method below, or a hash table, etcand it has an include/require statement...in those files to be included...do I need to

RE: [PHP] Question about how to do this...

2001-07-08 Thread Chris Cocuzzo
ation Security - www.whitecrown.net */ - Original Message - From: Ben Bleything <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; 'PHP General List (E-mail)' <[EMAIL PROTECTED]> Sent: Sunday, July 08, 2001 5:17 PM Subject: RE: [PHP] Question about how to do this...

Re: [PHP] Question about how to do this...

2001-07-08 Thread Chris Lambert - WhiteCrown Networks
ation Security - www.whitecrown.net */ - Original Message - From: Ben Bleything <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; 'PHP General List (E-mail)' <[EMAIL PROTECTED]> Sent: Sunday, July 08, 2001 5:17 PM Subject: RE: [PHP] Question about how to do this... | Yu

RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
out how to do this... so the switch statement idea works I guess. sounds good. -Original Message- From: Mark Charette [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 5:05 PM To: Ben Bleything; [EMAIL PROTECTED]; 'PHP General List (E-mail)' Subject: Re: [PHP] Questi

RE: [PHP] Question about how to do this...

2001-07-08 Thread Chris Cocuzzo
so the switch statement idea works I guess. sounds good. -Original Message- From: Mark Charette [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 5:05 PM To: Ben Bleything; [EMAIL PROTECTED]; 'PHP General List (E-mail)' Subject: Re: [PHP] Question about how to do this...

RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
iginal Message - From: "Ben Bleything" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "'PHP General List (E-mail)'" <[EMAIL PROTECTED]> Sent: Sunday, July 08, 2001 3:59 PM Subject: RE: [PHP] Question about how to do this... > Use a database. With m

Re: [PHP] Question about how to do this...

2001-07-08 Thread Mark Charette
MAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "'PHP General List (E-mail)'" <[EMAIL PROTECTED]> Sent: Sunday, July 08, 2001 3:59 PM Subject: RE: [PHP] Question about how to do this... > Use a database. With mysql, you can store the text into a table with > primary

RE: [PHP] Question about how to do this...

2001-07-08 Thread Chris Cocuzzo
EMAIL PROTECTED]; 'PHP General List (E-mail)' Subject: RE: [PHP] Question about how to do this... Use a database. With mysql, you can store the text into a table with primary key called 'page' or something like that, and a text field of some sort. Then, do mysql_query(&quo

RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
Use a database. With mysql, you can store the text into a table with primary key called 'page' or something like that, and a text field of some sort. Then, do mysql_query("SELECT pagetext FROM website WHERE page=$page;"); => Dive into it. It's easier than it looks. Ben -Original Message