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

2001-07-08 Thread Chris Cocuzzo
hey- so I want to have my site so that the urls are like /index.php?page=bio the way I made the index.php so far is just one gigantic switch statement...is there a better way to do it? chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

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

2001-07-08 Thread Ben Bleything
- From: Chris Cocuzzo [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 1:44 PM To: PHP General List (E-mail) Subject: [PHP] Question about how to do this... hey- so I want to have my site so that the urls are like /index.php?page=bio the way I made the index.php so far is just one

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

2001-07-08 Thread Chris Cocuzzo
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(SELECT pagetext FROM website WHERE

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

2001-07-08 Thread Mark Charette
]; '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 key called 'page' or something like that, and a text field of some sort

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

2001-07-08 Thread Ben Bleything
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 key called 'page' or something like that, and a text

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

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

2001-07-08 Thread Ben Bleything
Yup = Try splitting the pages out into separate files. I'm betting you'll find it easier to work with. Ben -Original Message- From: Chris Cocuzzo [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 2:02 PM To: PHP General List (E-mail) Subject: RE: [PHP] Question about how to do

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

2001-07-08 Thread Chris Lambert - WhiteCrown Networks
, July 08, 2001 5:17 PM Subject: RE: [PHP] Question about how to do this... | Yup = Try splitting the pages out into separate files. I'm betting | you'll find it easier to work with. | | Ben | | | -Original Message- | From: Chris Cocuzzo [mailto:[EMAIL PROTECTED]] | Sent: Sunday, July 08

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

2001-07-08 Thread Chris Cocuzzo
Networks [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 5:28 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Question about how to do this... Or even better, create a system where you can create new pages without adding to the switch statement: ? $page = /home/full/path/to/site/page_includes

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

2001-07-08 Thread Ben Bleything
[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 start

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 ?php tags at the beginning and ? tags at the ends = Think of the behavior of

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 ?php tags at the

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 PROTECTED] wrote