This seems to be PHP5 only because of the use of stripos() so i added a bit of code before the start of the class so that it becomes php4 and php5 compatible.
if (!function_exists('stripos')) {
function stripos($haystack, $needle){
return st…
This seems to be PHP5 only because of the use of stripos() so i added a bit of code before the start of the class so that it becomes php4 and php5 compatible.
if (!function_exists('stripos')) {
function stripos($haystack, $needle){
return st…