EDIT: FIXED MYSELF!
Last edited by Diablosblizz on Tue Jul 31, 2007 9:53 pm; edited 1 time in total
Last edited by Diablosblizz on Tue Jul 31, 2007 9:53 pm; edited 1 time in total
| Code: |
| <?
function BBCODE($content){ //define the function of bbcode $content = nl2br($content); //replaces returns with br's $match = array( '#\:P#se' ); //codes used in posts $replace = array( "'<img src=\"/images/p.gif\" border=\"0\" alt=\"\\1\">'" ); //replacements return preg_replace($match, $replace, $content); //match, and replace } //end the function ?> |