I have an some PHP code which uses classes. this works perfectly using PHP v5 and PHP v 4.2.3.
I have recently uploaded the code to a PHP v4.3.10 site and it wont work, everything else PHP related does except the creating the instance and calling the main function within the class.
Here is a snippet:
$mysms = new sms(); //Create SMS instance.
$smsstatus=($mysms->send ("test", "test ", "testing"));
Help, its driving me nuts
I have also attached the PHP config for the site if that helps