War etwas schnell von mir.
Du musst dich etwas mit der Docu beschäftigen.In welchen Ordner müssen die Bilder?
In diesem Fall {IMAGE:random-header-200/Bild9.jpg}
http://www.phpwcms-docu.de/grafik_tags.phtml
Dann klappt es auch.
Gruß Knut
Du musst dich etwas mit der Docu beschäftigen.In welchen Ordner müssen die Bilder?
Code: Select all
// insert non db image standard
$search[7] = '/\{IMAGE:(.*?)\}/';
$replace[7] = '<img src="picture/$1" border="0" vspace="0" hspace="0" alt="" />';
Code: Select all
// insert non db image:{IMAGE:image.ext:alt text} ----------KH (flip-flop) 24.04.2006
$search[7] = '/\{IMAGE:(.*?):(.*?)\}/';
$replace[7] = '<img src="picture/$1" border="0" vspace="0" hspace="0" alt="$2" title="$2" />';