Re: [PHP] 3 tier web development

2003-02-08 Thread Jonathan Chum
I use Smarty for seperate PHP logic and template logic. For database abstraction, I use AdoDB. Not much a fan of Pear Adodb was pretty faithful when I ported my MySQL app to PostGreSQL. "Hardik Doshi" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Ok so fo

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
[mailto:[EMAIL PROTECTED]] Enviado el: viernes, 07 de febrero de 2003 15:35 Para: [EMAIL PROTECTED]; [EMAIL PROTECTED] Asunto: Re: [PHP] 3 tier web development >> //Class to handle ALL operations an ANY database You may want to change that... it only does 2 operations and it only does th

Re: [PHP] 3 tier web development

2003-02-07 Thread 1LT John W. Holmes
t; Sent: Friday, February 07, 2003 11:28 AM Subject: RE: [PHP] 3 tier web development About the database sigue .. i dont use ADOD or PEAR .. I use this: //Class to handle ALL operations an ANY database Class data_base ( //Predetermined value of attributes, you can safely override this when //do

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
ra Internet e Intranet - Soluciones para redes - Licenciamiento de Software - Asesoría y Soporte Técnico -Mensaje original- De: Hardik Doshi [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 07 de febrero de 2003 10:50 Para: [EMAIL PROTECTED]; [EMAIL PROTECTED] Asunto: RE: [PHP] 3 tier web devel

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
PROTECTED]; [EMAIL PROTECTED] Asunto: RE: [PHP] 3 tier web development Hi Daniel, Thanks for your comments. What is the difference between PHP nuke and Smarty engine? Can we use PEAR or ADODB as database abstraction layer? Which one is the best on everyone's experience? thanks Hardik --

RE: [PHP] 3 tier web development

2003-02-07 Thread Chris Shiflett
--- Hardik Doshi <[EMAIL PROTECTED]> wrote: > What is the difference between PHP nuke and Smarty > engine? A better question would be what is the similarity. Smarty is a template engine. PHP Nuke is an application written in PHP. Chris -- PHP General Mailing List (http://www.php.net/) To unsubs

RE: [PHP] 3 tier web development

2003-02-07 Thread Hardik Doshi
: Hardik Doshi [mailto:[EMAIL PROTECTED]] > Enviado el: viernes, 07 de febrero de 2003 10:24 > Para: [EMAIL PROTECTED] > Asunto: [PHP] 3 tier web development > > Hi Everyone, > > I am curious to know how one can develop 3-tier web > based applications using PHP, MyS

RE: [PHP] 3 tier web development

2003-02-07 Thread Daniel Masson
databases .. and guarantee the portability .. I hope this helps. Regards. Daniel. -Mensaje original- De: Hardik Doshi [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 07 de febrero de 2003 10:24 Para: [EMAIL PROTECTED] Asunto: [PHP] 3 tier web development Hi Everyone, I am curious to

Re: [PHP] 3 tier web development

2003-02-07 Thread Hardik Doshi
Ok so for seperating interface and PHP code, smarty templace engine is the best right? What about database abstraction layer? thanks for your information. I really appreciate that. Hardik --- John Wells <[EMAIL PROTECTED]> wrote: > Hardik Doshi said: > > 1. How one can seperate HTML and PHP (

Re: [PHP] 3 tier web development

2003-02-07 Thread John Wells
Hardik Doshi said: > 1. How one can seperate HTML and PHP (or any other > programming code). Is there anything in PHP so i can > seperate Interface layer and programming logic layer? http://smarty.php.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP] 3 tier web development

2003-02-07 Thread Hardik Doshi
Hi Everyone, I am curious to know how one can develop 3-tier web based applications using PHP, MySQL. Here Database should be changed in future using database abstraction layer. Can anybody tell me in detail that how can i build 3 tier flexible web application? More questions on this thread: 1.