hi, I would like te announce a really good html template parser class.
How it works.
Normally your HTML and PHP codes are mixed and therefor you are not able to
use tools like dreamweaver anymore. Well with ecTemplate you can define to
types of tags that you can put inside your html file.
for example
variable style
{aName}
loop style
<!-- #LOOP-START:rules -->
<!-- #LOOP-END:rules -->
so your html file can look like this
<HTML>
<HEAD>
<TITLE>{title}</TITLE>
</HEAD>
<BODY>
<TABLE align="center" border="1">
<!-- #LOOP-START:row -->
<tr><td>{var_1}</td><td>{var_2}</td></tr>
<!-- #LOOP-END:row -->
</TABLE>
</BODY>
</HTML>
the ecTemplate class is going to parse the html file and replaces the code
special tags with te result of your php code.
Just try it out and you will see it works really handy
look here for a live excample
http://www.millipede.nl/ectemplate
greetings
Jeroen Olthof
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]