Thanks for that, managed to find it and get it working.... sort of
Ive got the book "Pro PHP Programming" pub by Wrox. In the examples they show variables in the templates enclosed in {} brackets. Ive got to admit Ive dived into the middle of the book.... but when I use {} in my template it doesnt work, when I take them out and just use the variable name it works OK....
IE :- this works as a template, with titleIMAGE as the variable :-
<div align="center"><img src= titleIMAGE width="595" height="60">
</div>
this doesnt:-
<div align="center"><img src= {titleIMAGE} width="595" height="60">
</div>
in the second example the browser includes {} brackets in the filename and doesnt find it. I want to build a table, when should I use {} for variables and when not ?
cheers
Tony