Hello.
i open some html file and edit it in TinyMCE but here comes the problem becouse i dont get ">" but ">" ... This only happenes if i write smarty tag {$data->anythink} ..
from this {$data->anythink} to this {$data->anythink} ..
<table> and all other think is normal.
Any idea ? Thanks!
Thanks but i found it ...
$string = ">"; $patterns[0] = '/>/'; $replacements[0] = '>'; $repeared = preg_replace($patterns, $replacements, $string);
this replaces the > to > ... so i think this is the solution.
NG