This is a very good valid point that I completely failed to consider =>

Chris, to answer your last question, yes, it _would_ work, but as Mark
points out, it's probably not a very good idea.  Still cool, but hey,
you can tell I don't work in a production environment =>

The other method I sent will reduce the size (and maintenance cost) of
your index.php page, while being fast (as Mark says).

Ben

-----Original Message-----
From: Mark Charette [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, July 08, 2001 2:05 PM
To: Ben Bleything; [EMAIL PROTECTED]; 'PHP General List (E-mail)'
Subject: Re: [PHP] Question about how to do this...

This is probably "not a good idea" if the data is mostly static. There's
no
real reason to use the power of a db engine for something this trivial,
and
static serving will be faster than a DB system.

Mark C.

----- Original 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 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-----
> 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 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 additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail:
[EMAIL PROTECTED]
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail:
[EMAIL PROTECTED]
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to