<?php
error_reporting(0);





	// Traitement du codage texte
	function doscode($texte) {
	global $texte;

	$texte = eregi_replace("\\[b:([^\[\(\"']*)\\]([^\[]*)\\[/b:([^\[\(\"']*)\\]","<span style=\"font-weight: bold\">\\2</span>",$texte);
	$texte = eregi_replace("\\[i:([^\[\(\"']*)\\]([^\[]*)\\[/i:([^\[\(\"']*)\\]","<span style=\"font-style: italic\">\\2</span>",$texte);
	$texte = eregi_replace("\\[u:([^\[\(\"']*)\\]([^\[]*)\\[/u:([^\[\(\"']*)\\]","<span style=\"text-decoration: underline\">\\2</span>",$texte);

	$texte = eregi_replace("\\[quote:([^\[\(\"']*)\\]([^\[]*)\\[/quote:([^\[\(\"']*)\\]","<table width=\"90%\" cellspacing=1 cellpadding=3 border=0 align=center><tr><td><b>Citation:</b></td></tr><tr><td class=\"textecite\">\\2</td></tr></table>",$texte);
	$texte = eregi_replace("\\[quote:([^\[\(\"']*)\\=\"([^\[\(\"']*)\\\"]([^\[]*)\\[/quote:([^\[\(\"']*)\\]","<table width=\"90%\" cellspacing=1 cellpadding=3 border=0 align=center><tr><td><b>\\2 a écrit :</b></td></tr><tr><td class=\"textecite\">\\3</td></tr></table>",$texte);

	$texte = eregi_replace("\\[code:([^\[\(\"']*)\\]([^\[]*)\\[/code:([^\[\(\"']*)\\]","<table width=\"90%\" cellspacing=1 cellpadding=3 border=0 align=center><tr><td><b>Code:</b></td></tr><tr><td class=\"code\">\\2</td></tr></table>",$texte);

	$texte = eregi_replace("\\[list:([^\[\(\"']*)\\]([^\[]*)\\[/list:([^\[\(\"']*)\\]","<ul>\\2</ul>",$texte);
	$texte = eregi_replace("\\[list=([^\[\(\"']*)\\]([^\[]*)\\[/list:([^\[\(\"']*)\\]","<ol type=\"1\">\\2</ol>",$texte);

	$texte = eregi_replace("\\[img:([^\[\(\"']*)\\]([^\[]*)\\[/img:([^\[\(\"']*)\\]","<img src=\"\\2\" border=0 \>",$texte);

	$texte = eregi_replace("\\[url\\]([^\[\(\"']*)\\[/url\\]", "<a href=\"\\1\" target=_blank>\\1</a>",$texte);
	$texte = eregi_replace("\\[url=([^\[\(\"']*)\\]([^\[\(\"']*)\\[/url\\]","<a href=\"\\1\" target=_blank>\\2</a>",$texte);

	$texte = eregi_replace("\\[color=([^\[\(\"']*)\\:([^\[\(\"']*)\\]([^\[]*)\\[/color:([^\[\(\"']*)\\]","<span style=\"color: \\1\">\\3</span>",$texte);
	$texte = eregi_replace("\\[size=([^\[\(\"']*)\\:([^\[\(\"']*)\\]([^\[]*)\\[/size:([^\[\(\"']*)\\]","<span style=\"font-size: \\1px; line-height: normal\">\\3</span>",$texte);

	$texte = eregi_replace("\\[u:([^\[\(\"']*)\\]([^\[]*)\\[/u:([^\[\(\"']*)\\]","<span style=\"text-decoration: underline\">\\2</span>",$texte);
	$texte = eregi_replace("\\[i:([^\[\(\"']*)\\]([^\[]*)\\[/i:([^\[\(\"']*)\\]","<span style=\"font-style: italic\">\\2</span>",$texte);
	$texte = eregi_replace("\\[b:([^\[\(\"']*)\\]([^\[]*)\\[/b:([^\[\(\"']*)\\]","<span style=\"font-weight: bold\">\\2</span>",$texte);


	return $texte;
	}

?>