Re: [PHP] Processing PHP in Template File

2002-09-12 Thread [-^-!-%-
You are absolutly correct. Thx! =P e p i e D e s i g n s www.pepiedesigns.com Providing Solutions That Increase Productivity Web Developement. Database. Hosting. Multimedia. On Thu, 12 Sep 2002, Chris Boget wrote: > > The above process works, as far as replace the place holders, and prin

Re: [PHP] Processing PHP in Template File

2002-09-12 Thread Support @ Fourthrealm.com
John Include your template this way: $file_name="templates/somefile.php" $New_Content1 = 'This is the new text'; $New_Content2 = 'This is the other text'; include $file_name; In the template file, have etc wherever the content should appear. Then you can put other php code in the template f

Re: [PHP] Processing PHP in Template File

2002-09-12 Thread Chris Boget
> The above process works, as far as replace the place holders, and printing > the new content (which is an HTML file). However, it will not process PHP > scripts, within the template. If it's really a template, why does it have PHP scripts within? Why not just replace those scripts with place h