if ($_POST["teststring"]) { // Inclus le perser BBCode require_once "bbcode.php"; // Récupère les tags dans le fichier XML getBBTags('bbcode.xml'); // Affiche le texte parsé echo render($_POST["teststring"]); echo "
"; } ?>
Entrez votre texte a parser
if (!$_POST["teststring"]) { ?>[quote]Ceci est un exemple[/quote] [b]Le gras[/b] [i]L'italique[/i] [u]Le souligné[/u] [url=http://www.lalex.com/blog/]Un lien vers mon blog[/url] Une image : [img]http://www.lalex.com/resources/smoke.gif[/img] [list][*]Liste[*]Normale[/list] [list=1][*]Liste[*]avec numéros[/list] [nohtml]
Empêcher l'utilisation du HTML
[/nohtml] [nobbcode][b][i]Empêcher l'utilisation du bbcode[/i][/b][/nobbcode] } else { echo stripslashes($_POST["teststring"]); } ?>