Mafiadream
09-07-2009, 11:56 PM
Hello Guys
Im new here - and im not sure if this is the correct place to post? Well, please correct me if im wrong.
I have an Online game - and im currently making changes to the BB Code so that users can embed YouTube videos into there profiles - but im not surehow?
Here is a snippet of the code:
/////////BB Codes////////////
$txt = str_replace("", "<fieldset><legend>QUOTE:</legend><br>", $txt);
$txt = str_replace("", "</fieldset>", $txt);
$txt = str_replace("", "<center>", $txt);
$txt = str_replace("", "</center>", $txt);
$txt = str_replace("", "<b>", $txt);
$txt = str_replace("", "</b>", $txt);
$txt = str_replace("", "<i>", $txt);
$txt = str_replace("", "</i>", $txt);
$txt = str_replace("", "<u>", $txt);
$txt = str_replace("", "</u>", $txt);
$txt = str_replace("", "<marquee>", $txt);
$txt = str_replace("", "</marquee>", $txt);
$txt = str_replace('[url=', '<a href="', $txt);
$txt = str_replace('[/url]', '</a>', $txt);
$txt = str_replace("[hr]", "<hr>", $txt);
$txt = str_replace("", "<img border=0 src=", $txt);
$txt = str_replace("", ">", $txt);
$txt = str_replace("", "<img border=0 src=", $txt);
$txt = str_replace("", ">", $txt);
$txt = str_replace("", "<div id=quote>quote:<br>", $txt);
$txt = str_replace("", "</div>", $txt);
$txt = str_replace("", "<font color=red>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=blue>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=green>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=orange>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=white>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=black>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<body bgcolor=white>", $txt);
$txt = str_replace("", "</body>", $txt);
$txt = str_replace("", "<div id=code>", $txt);
$txt = str_replace("", "</div>", $txt);
$txt = str_replace(array("\r\n", "\n", "\r"), '<br>', $txt);
$txt = str_replace("[b]", "<b>", $txt);
$txt = str_replace("[h1]", "<h1>", $txt);
$txt = str_replace("[h2]", "<h2>", $txt);
$txt = str_replace("[h3]", "<h3>", $txt);
$txt = str_replace("[h3]", "<h3>", $txt);
$txt = str_replace("[h4]", "<h4>", $txt);
$txt = str_replace("[h5]", "<h5>", $txt);
return $txt;
}
function rep2($txt) {
$txt = str_replace('<','<',$txt);
$txt = str_replace('>','>',$txt);
$txt = str_replace('"','\"',$txt);
$txt = str_replace('&#amp;','&',$txt);
return $txt;
}
//EXTERNAL BB
//EXTERNAL BB CODE END
?>
Im new here - and im not sure if this is the correct place to post? Well, please correct me if im wrong.
I have an Online game - and im currently making changes to the BB Code so that users can embed YouTube videos into there profiles - but im not surehow?
Here is a snippet of the code:
/////////BB Codes////////////
$txt = str_replace("", "<fieldset><legend>QUOTE:</legend><br>", $txt);
$txt = str_replace("", "</fieldset>", $txt);
$txt = str_replace("", "<center>", $txt);
$txt = str_replace("", "</center>", $txt);
$txt = str_replace("", "<b>", $txt);
$txt = str_replace("", "</b>", $txt);
$txt = str_replace("", "<i>", $txt);
$txt = str_replace("", "</i>", $txt);
$txt = str_replace("", "<u>", $txt);
$txt = str_replace("", "</u>", $txt);
$txt = str_replace("", "<marquee>", $txt);
$txt = str_replace("", "</marquee>", $txt);
$txt = str_replace('[url=', '<a href="', $txt);
$txt = str_replace('[/url]', '</a>', $txt);
$txt = str_replace("[hr]", "<hr>", $txt);
$txt = str_replace("", "<img border=0 src=", $txt);
$txt = str_replace("", ">", $txt);
$txt = str_replace("", "<img border=0 src=", $txt);
$txt = str_replace("", ">", $txt);
$txt = str_replace("", "<div id=quote>quote:<br>", $txt);
$txt = str_replace("", "</div>", $txt);
$txt = str_replace("", "<font color=red>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=blue>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=green>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=orange>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=white>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<font color=black>", $txt);
$txt = str_replace("", "</font>", $txt);
$txt = str_replace("", "<body bgcolor=white>", $txt);
$txt = str_replace("", "</body>", $txt);
$txt = str_replace("", "<div id=code>", $txt);
$txt = str_replace("", "</div>", $txt);
$txt = str_replace(array("\r\n", "\n", "\r"), '<br>', $txt);
$txt = str_replace("[b]", "<b>", $txt);
$txt = str_replace("[h1]", "<h1>", $txt);
$txt = str_replace("[h2]", "<h2>", $txt);
$txt = str_replace("[h3]", "<h3>", $txt);
$txt = str_replace("[h3]", "<h3>", $txt);
$txt = str_replace("[h4]", "<h4>", $txt);
$txt = str_replace("[h5]", "<h5>", $txt);
return $txt;
}
function rep2($txt) {
$txt = str_replace('<','<',$txt);
$txt = str_replace('>','>',$txt);
$txt = str_replace('"','\"',$txt);
$txt = str_replace('&#amp;','&',$txt);
return $txt;
}
//EXTERNAL BB
//EXTERNAL BB CODE END
?>