Hi,
I am looking for a free tool which let me write pure html + user defined special tags, which would be transformed on demand into php file. For example I can define source like this:
<html><body>
<config/>
<mysql>
<form name="frm" action="nextstep.php">
<select name="xxx">
<query sql="select value, name from table where cathegory=@GET_cathegory";>
<option value="%1">%2</option>
</query>
</select>
</form>
</mysql>
</body></html>
result would be
<html><body>
<?php
include_once ("config.php");
?>
<?
include_once("mysql_open.php");
?>
<form name="frm" action="nextstep.php">
<select name="xxx">
....code what generates dynamically set of options....
</select>
</form>
<?
include_once("mysql_close.php");
?>
</body></html>
is there such a tool???