Re: [PHP] template logic problem

2002-05-14 Thread Miguel Cruz
By default, PHP can start sending output before it's all been generated. This results in faster results for web site visitors. On the other hand, it's not compatible with deciding late in the game that you want a few extra headers. If you want to do this sort of thing, read about output

Re: [PHP] template logic problem

2002-05-14 Thread David Robley
In article 001f01c1fae4$5291f830$0d01a8c0@avex, [EMAIL PROTECTED] says... HI miguel, thanks for your answer. I was hoping i could do something like you suggested. Cold Fusion has a tag called cfhtmlhead that will include anything within the head tags. You can call this function even

[PHP] template logic problem

2002-05-13 Thread list peters
hi everyone, This is my first project with php after using cold fusion for the last few years! So far I have been pretty happy with php, but I have a problem with my application logic (not a php problem, but hoping for a sexy solution.) I am using a template system and including different

RE: [PHP] template logic problem

2002-05-13 Thread David Freeman
My problem is that for one page in the site I need to display a image in the navigation bar that is referenced from a database. The database query happens in the included file which is below the navigation in the html - This means i cant reference the image file name because the

Re: [PHP] template logic problem

2002-05-13 Thread Justin French
My problem is that for one page in the site I need to display a image in the navigation bar that is referenced from a database. The database query happens in the included file which is below the navigation in the html - This means i cant reference the image file name because the query hasnt

Re: [PHP] template logic problem

2002-05-13 Thread Miguel Cruz
On Mon, 13 May 2002, list peters wrote: This is my first project with php after using cold fusion for the last few years! So far I have been pretty happy with php, but I have a problem with my application logic (not a php problem, but hoping for a sexy solution.) I am using a template

Re: [PHP] template logic problem

2002-05-13 Thread list peters
HI miguel, thanks for your answer. I was hoping i could do something like you suggested. Cold Fusion has a tag called cfhtmlhead that will include anything within the head tags. You can call this function even on the last line of your php template. I used this a lot. Has anyone written a