Posted by Ryan Creaser on 09/09/05 01:34
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
Navigation:
[Reply to this message]
|