zero-perfoliate
zero-perfoliate

Author Topic: Help please  (Read 253 times)

Offline xuanyinwen

  • New PHP Members
  • Posts: 1
  • Karma: +0/-0
Help please
« on: November 22, 2009, 12:53:59 PM »
anyone can help me on my website please. many thanks

address is: http://www.wanakaproperties.co.nz/test.php
which is the slide show working fine in firefox and not working in internet Explorer
the script is:

<script type="text/javascript">


var mygallery=new fadeSlideShow({
   wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
   dimensions: [320, 212], //width/height of gallery in pixels. Should reflect dimensions of largest image
   imagearray: [
<?PHP
 $photos_string = trim(file_get_contents('http://www.openhomesnz.com/scripts/picture1.html?whoami=5995h'));
 $photo_array = preg_split("[\n]", $photos_string);
 foreach ($photo_array as $value) {
   echo '["' . $value . '", "feature.php", "", ""],';   
 }   
      
?>      
   
   ],
   displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
   persist: false, //remember last viewed slide and recall within same session?
   fadeduration: 1500, //transition duration (milliseconds)
   descreveal: "ondemand",
   togglerid: ""
})