On my forum, I've inserted nofollow tags on pasted links - but the problem is that it doesnt put the nofollow tag on bbcoded links with anchor text. So I'm supposed to put rel="nofollow" before the closing of the a tag but nothing works! I'm getting page errors when put it in there. Maybe I'm putting it on the wrong part of the code Here's the line where im supposed to put the nofollow tag in somewhere $tns = "<a href='".htmlspecialchars($tempstr, ENT_QUOTES)."'>"; $tne = '</a>'; Code (markup): help?
Try: $tns = "<a href='".htmlspecialchars($tempstr, ENT_QUOTES)."' rel='nofollow'>"; $tne = '</a>'; PHP: