> My question is how I can do that after I get the data from the database? I
> mean how I can make this admin module to work?
You'll need to have to use str_replace/ereg_replace or similar to alter the
keywords you dream up into HTML.
EG:
$html = str_replace("[LINK]", "<A HREF=", $content);
All in all, though, it sounds like you are re-inventing the wheel...
Various templating systems (PHPLib, FastTemplate, et al) and HTML-editors
(eGrail springs to mind) already provide this functionality...
Unless you're just doing this to learn, I'd look into just using one of
those.
--
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]