[PHP] Re: scripting workflow

2005-04-13 Thread chris
I hand code everything I do in php. I separate functions and class in referenced files that are grouped by function in the site(i.e. - all queries are in queries.php, the db connection is done in dbconn.php, etc...). This will allow a project to grow without having to rewrite everything. Also d

[PHP] Re: scripting workflow

2005-04-12 Thread Skrol 29
Hi, I don't have your problems because I use a Template Engine. I usually have one main PHP script for the application, which doesn't deal with HTML directly. Other PHP scripts are libraries or special objects like the Template Engine itself. This also enables me to work WYSIWYG with user interface