Ian Barnes wrote:

                                   require_once (
$fetchd['path'].'sdk/ipbsdk_class.inc.php' );

What is the above line doing? It looks like you are trying to redeclare the ipbsdk class each time around the loop which is illegal in php. You can't do :

class ipbsdk {
...
}

and then (in the same request)

class ipbsdk {
....
}

because the names will clash. This should cause a "Fatal error: Cannot redeclare class ipbsdk ..." message though. Are you seeing any errors?

- Ryan

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to