The site I'm working on is completely templatized. All the php is on one page, and all the html is on another page with the same name.(different extensions though)
Image.php and Image.html for example
Normally to set a variable in the html, I put a placeholder within curly braces where I want it to go: {image}
And in the php use $t->set_var('image', $image); to set it.
I've created a graph in php using the GD image libraries; how do I get it to output to where I want within the html?