Deprecated: Function ereg_replace() is deprecated
example :
$mytext = ereg_replace('[^A-Za-z0-9_]', '', $mytext );
is changed to$mytext = preg_replace('/[^A-Za-z0-9_]/', '', $mytext );
留言
張貼留言