View Single Post
sexdwarf sexdwarf is offline 2002-08-08 #5 Old  
gotta go to work in uhm less than 10 seconds ...

line #3:

Code:
preg_replace("s/\[LINK\](.*?)\[\/LINK\]/gi", "<a href=\"$1\">$1</a>", $thetext;
should be
Code:
preg_replace("s/\[LINK\](.*?)\[\/LINK\]/gi", "<a href=\"$1\">$1</a>", $thetext);
i believe...can't test, gotta run
Reply With Quote