
Nov 14th, 2007, 07:10
|
 |
Technical Administrator
|
|
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,772
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
Re: Formatting Passed Value Within ASP Page In Textarea?
Well in PHP it would be like:
- PHP: Select all
$q = str_replace("[quote]", "<div class=\"quote\">from <strong>AlexGeek</strong><div>Original message", $quote); $q = str_replace("[/quote]", "</div></div>", $q); echo $q;
Something like that?
|