Re: [PHP] Design question

2011-02-05 Thread Jason Pruim
On Feb 5, 2011, at 6:46 PM, Paul M Foster wrote: On Sat, Feb 05, 2011 at 11:11:57AM -0500, li...@pruimphotography.com wrote: Morning everyone! I have a design question... No it's not about the interior of my house... although I could use some help with that as well... I am working on a fr

Re: [PHP] Design question

2011-02-05 Thread Jason Pruim
On Feb 5, 2011, at 11:19 AM, Ashley Sheridan wrote: On Sat, 2011-02-05 at 11:11 -0500, li...@pruimphotography.com wrote: Morning everyone! I have a design question... No it's not about the interior of my house... although I could use some help with that as well... I am working on a framewor

Re: [PHP] Design question

2011-02-05 Thread Paul M Foster
On Sat, Feb 05, 2011 at 11:11:57AM -0500, li...@pruimphotography.com wrote: > Morning everyone! > > I have a design question... No it's not about the interior of my > house... although I could use some help with that as well... > > I am working on a framework for my own use (And maybe one day wi

Re: [PHP] Design question

2011-02-05 Thread Ashley Sheridan
On Sat, 2011-02-05 at 11:11 -0500, li...@pruimphotography.com wrote: > Morning everyone! > > I have a design question... No it's not about the interior of my > house... although I could use some help with that as well... > > I am working on a framework for my own use (And maybe one day will

[PHP] Design question

2011-02-05 Thread li...@pruimphotography.com
Morning everyone! I have a design question... No it's not about the interior of my house... although I could use some help with that as well... I am working on a framework for my own use (And maybe one day will beat out the popular frameworks! Hey I can dream right? :)) and to increase my

Re: [PHP] Design question.

2002-09-21 Thread @ Edwin
(Sorry if I've already sent this.) I agree. But, I don't really see any problem having *.inc files as *.inc.php (so that they'll be executed by Apache) esp. IF the config file have only this: (Even if this is executed nothing shows up...) I just thought this is worth knowing esp. if there's no

Re: [PHP] Design question.

2002-09-21 Thread Chuck PUP Payne
Thanks guys. That really helpful. Chuck Payne On 9/21/02 10:16 PM, "Chris Shiflett" <[EMAIL PROTECTED]> wrote: > This explanation from Justin is worth saving. > > I also like to call all of my included modules *.inc, and I prefer to > store them outside of document root. > > However, if you w

Re: [PHP] Design question.

2002-09-21 Thread Chris Shiflett
This explanation from Justin is worth saving. I also like to call all of my included modules *.inc, and I prefer to store them outside of document root. However, if you want to keep all of your files together, the .htaccess file shown below is the best way to restrict direct access to modules.

Re: [PHP] Design question.

2002-09-21 Thread Justin French
Hi, I place name all my included files *.inc... I place them all in a folder /inc/ and place a .htaccess file in that directory to restrict the files being served of HTTP: Order Allow,Deny Deny from all Another option would be to place them in a folder ABOVE your web root, so that Apa

[PHP] Design question.

2002-09-21 Thread Chuck PUP Payne
Hi, I have a question. I been working a personal project that I am want to make a like simpler. I have several pages have in which I have place the information to connect to my database, whick is getting old. What I am wanting to do is create file like most do, a config, but I want to know which