this is working, all except the LINKS and IMAGES part. Ideas?
$a = array(">", "<", "[b]", "[/b]", "[i]", "[/i]", "[center]", "[/center]", "[u]", "[/u]", "[link=(.*?)](.*?)[/link]", "[img](.*?)[/img]");
$b = array(">", "<", "<b>", "</b>", "<i>", "</i>", "<center>", "</center>", "<u>", "</u>", "<a href=$1>$2</a>", "<img src=$1>");
$description = str_replace($a,$b,$description);