Hallo,
ich verwende erst seit Kurzem phpwcms und bin auf folgendes Problem gestoßen.
Ich möchte in ein Template meinen Counter einbinden. Dieser liegt als php Skript auf dem Server.
Alles was ich machen will ist ..
<?php require ("include/counter/count.php");
echo $html_result;
?>
Ich habe es schon mit dem {PHP} Tag probiert aber nichts ist gegangen.
Ich verwende Release 1.1-RC4 03-06-2004
cu Roland
Insert PHP Code in Template
the easiest way to do it is to use the replacement tag {PHP:myphp.php} in the template. Then put your php code in the file ...
http://www.studmed.dk Portal for doctors and medical students in Denmark
see more replacement tags here:
http://www.fhss.de/replacement/replace_tags.htm
list made by Pappnase
http://www.fhss.de/replacement/replace_tags.htm
list made by Pappnase
http://www.studmed.dk Portal for doctors and medical students in Denmark
hello froldfrold wrote:see more replacement tags here:
http://www.fhss.de/replacement/replace_tags.htm
list made by Pappnase
thanks for publish! but i need also to update the list!
a few tags are changed and a few add!
in datei legen
hallo
habe die zeilen in ne datei gelegt und jetzt funktioniert es.
danke und gute n8
Roland
--
new webpagedesign test on http://www2.roli.at
habe die zeilen in ne datei gelegt und jetzt funktioniert es.
danke und gute n8
Roland
--
new webpagedesign test on http://www2.roli.at
- Oliver Georgi
- Site Admin
- Posts: 9919
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: Insert PHP Code in Template
Geht auch so im Text selbst:roliko wrote:Hallo,
...
Alles was ich machen will ist ..
<?php require ("include/counter/count.php");
echo $html_result;
?>
...
cu Roland
Code: Select all
[PHP]
require ("include/counter/count.php");
echo $html_result;
[/PHP]