I'm not sure what to search the web for, so I wonder if someone here
can help me?
I have a website that uses many individual php pages. I'd like to
simplify design updates by using these scripts as includes, but I'm
trying to avoid having loads of:
$output_string. ="<tr><td>bl ah blah".$some_var iable;
$output_string. ="blah blah</td></tr>";
You know the kinda thing.
Is there a way of parsing the script in the php processor and then
capturing the string created and dropping it into my templating script?
Thanks
Pete
can help me?
I have a website that uses many individual php pages. I'd like to
simplify design updates by using these scripts as includes, but I'm
trying to avoid having loads of:
$output_string. ="<tr><td>bl ah blah".$some_var iable;
$output_string. ="blah blah</td></tr>";
You know the kinda thing.
Is there a way of parsing the script in the php processor and then
capturing the string created and dropping it into my templating script?
Thanks
Pete
Comment