Mister Rejetto
I envisage some developpements interraction with hfs by waiting to be able to use of the php, the only possibility at present is the use of the url? Param1; param2...
1) What I wish it is the possibility of being able to define internal variables in the tpl in the kind of
(with exactly this syntax)
<!-- #PRAGMA
%VAR1%="value";
%Lang%="language";
#ENDPREAGMA -->
"<!--" and "-->" are essential to not interfere with the html code
2) The possibility of spending this type of affectation by using the url
http://myserver.rejetto.hfs/folder1/folder2/?var$VAR1=value&var$Lang=my%20text&....&sort=n&limit=....
I do not know which characters are forbidden into URL line, can you answer me for a long time this subject?
After analysis d the url by hfs, this last one will replace any utlisation of %var1% by the content of $var1 in the template with the corresponding value.
an example
i) URL is
http://myserver.rejetto.hfs/folder1/folder2/?var$message=You%like%20It
ii) template as:
<html>
<head>
...
<!-- #PRAGMA
%var1%="good";
%test%="that will works";
#ENDPREAGMA -->
...
</head>
<body>
....
%test% will done if you are logged
</body>
</html>
[loggedin]
...
<p>
We can use variable to say : %test% %var1% , %message% ?
<p>
...
iii) the user can see
that will works will done if you are logged
that will works good , You like it ?