View Single Post

  #2 (permalink)  
Old 09-06-2004
Jasper Bryant-Greene
 
Posts: n/a
Default Re: Help with rotator script error

Carolyn Gill wrote:
> here's the page with the error http://www.ioworldwide.com/ and...


That isn't an error - simply a notice letting you know that that
variable hasn't been defined. Either put

$image = '';

at the top of your script to define $image before starting, or put

error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);

at the top to hide such notices.

--
Jasper Bryant-Greene
Cabbage Promotions
Reply With Quote