Link to home
Start Free TrialLog in
Avatar of ezpete
ezpete

asked on

php template system

I am looking for a php template system to use with my application. I realize that the ideal solution would be to create my own but I am fairly new to php and I feel I would probably end up doing more harm then good performance wise so I decided to go with a 3rd party solution.

I have been looking over the various "popular" template systems like smarty,quick template,phemplate,fast template... but have yet to find one that really suits my needs which are.

1.) Simple to use (I don't want to have to deal with config files and extension classes and other bloated features a.k.a smarty_ware) I just need the  basics along with database support.

2.) Fast (not much else I can say except it has to be faster then Fast Template)

3.) Has a fair amount of documentation / examples to learn from (would rather not spend 3 days trying to "guess" how the system works)

Out of all of the systems I have looked at it would appear that phemplate comes closer to meeting my needs then any of the others but there is not alot of  documentation on it and I have no idea if it has database support or not so maybe if someone could just enlighten me on these things then I could use it but if not then what else could I use ???

Thanks for all replies in advance.


 
Avatar of lokeshv
lokeshv

check patTemplate may be this is wat u need..

a nice article on it on devshed..

http://devshed.com/Server_Side/PHP/patTemplate/patTemplate1/page1.html

hope this helps.

Lk
Avatar of ezpete

ASKER

That was another one I thought about using but have been unable to find any benchmarks on it. Has anyone used it and if so how does it compare to the other systems.
Avatar of ezpete

ASKER

I just went to the pat template website and noticed that the project has not been updated in some time and on their forums alot of people are complaining about speed issues and lack of updates so I think I will have to pass on this one.
Actually PHP has a built in function that makes it easy for templates to be used.

All your PHP code goes in one file with the use of
eval() which you can get walked through at www.php.net

and then in a HTML file you just have to use $codeword to be replaced with the dynamic info you wnat.

My preference is to set up strings of data to be fed in to the variable. So like for a dynamic table the variable would be set up something like:

$TD_START="<td>";
$TD_END="</td>";
$TR_DESC="<td colspan=\"3\"><i>Description</i>: ";
$TR_START_ODD="<tr bgcolor=\"#CCCCFF\">";
$TR_START_EVEN="<tr bgcolor=\"#EEEEFF\">";
$TR_TD_END="</td></tr>";
$LINK_OPEN_START="<a href=\"";
$LINK_OPEN_END="\">";

$stringToPrint="";
while blah do blah
$stringToPrint.=$TR_TD_START . dynamicVar . $TD_END;
$stringToPrint.=$TD_START . $LinkData_open . fileName . $LinkData_close . $TD_END;
$stringToPrint.=$TD_START . dynamicData . $TD_END;
$stringToPrint.=$TD_START . dynamic data . $TR_TD_END;
$stringToPrint.=$TR_TD_START . $TR_DESC . dynamicdata . $TR_TD_END;
end while loop

the above code is part pseudo so as to give an example but it is what I use for my work pages. So that I can let people do all they want to the template files and not have to worry about PHP errors showing up in the backend files. Makes for updating the look and feel of pages a whole lot easier too.

And this is all you need at the end of your PHP code to do the evaluating:

$useFile=file($thisPage);

//format output
foreach ($useFile as $line) {
  $str = $line;
  // add slashes to prevent premature string escaping
  $str=addslashes($str);
  // evaluate the code (note the value is returned in the function)
  eval("\$str = \"$str\";");
  // remove the slashes you used to protect your string during parsing
  $str=stripslashes($str);
  echo $str;
}

Hope this helps and happy coding
Red010Knight
Avatar of ezpete

ASKER

Thanks for the code but I also need support for databases and such which I your code will not work with but thanks again.
ASKER CERTIFIED SOLUTION
Avatar of red010knight
red010knight
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ezpete

ASKER

I decided to use phemplate but since you provided your own code I gave you the points anyway so thanks for the effort.