Okay, im using a BB code script that tomm helped me with (thanks dude) However, it only applies the code if there are no new lines in between it
for example
Wont work..PHP Code:[align=center]
Bla
Bla
[/align]
The code is as follows:
Any help please?PHP Code:<?php
$str = preg_replace('#\[align=(.*?)\](.*?)\[/align\]#i','<div align="$1">$2</div>',$str);
return $str;
?>





Reply With Quote
