Ver Mensaje Individual
  #5 (permalink)  
Antiguo 18/12/2007, 16:06
naderST
 
Fecha de Ingreso: diciembre-2007
Ubicación: Por ahi.
Mensajes: 13
Antigüedad: 16 años, 4 meses
Puntos: 0
Re: Ayuda con BBCode

Aquí esta el codigo:

Código PHP:
<?php
function bbcode($texto)
{
    
$texto str_replace("<""&lt;"$texto);
    
$texto str_replace(">""&gt;"$texto);

    
$texto preg_replace("/\[b\](.*?)\[\/b\]/s","<b>$1</b>",$texto); 
    
$texto preg_replace("/\[u\](.*?)\[\/u\]/s","<u>$1</u>",$texto); 
    
$texto preg_replace("/\[i\](.*?)\[\/i\]/s","<i>$1</i>",$texto); 

    
$texto preg_replace("/\[code\](.+?)\[\/code\]/s""<table class=\"code\" cellpadding=\"5\" cellspacing=\"0\" width=\"90%\"><tr><td><p><b>Codigo:</b><br /><code>$1</code></p></td></tr></table>"$texto);
    
    
    return 
$texto;
}
?>