Posted by Steve on 04/26/07 13:04
"ana" <anka@vizualmedia.hr> wrote in message
news:f0pvp1$ss2$1@ss408.t-com.hr...
| Thank you all for your help!
|
| Steve please can you tell me
|
| when I put /<[^\s]\s+([^=\s]=([^"'\s))*?>/g
| in variable like this
| $pre_replace="/<[^\s]\s+([^=\s]=([^"'\s))*?>/g";
| It won't work, I have problem with quote inside ....^"'\s...
| everything written after this var went red
sorry...because you have to escape the quote.
$replace = "/<[^\s]\s+([^=\s]=([^\"'\s))*?>/g";
that should help.
[Back to original message]
|