[support] How to show different images on page refresh

Austin Einter austin.einter at gmail.com
Sat Feb 26 07:44:17 UTC 2011


Hi All
Finally the below code I added to page.tpl.php to show different images at
on page refresh.
In IE8 it is working fine. Howevr with firefox the image is not shownup. Any
clue ?

The code is as below.

 <!--    Starting banner  -->
<?php
function endswith($string, $test)
{
 $strlen1 = strlen($string);
 $testlen = strlen($test);
 if($strlen1 < $testlen)
  return FALSE;
 $diff = $strlen1 - $testlen;
 $strend = substr($string, $diff);
 return ($strend == $test);
}
$dirimage = realpath('.\sites\all\themes\myzen\templates\himg');
$directory = opendir($dirimage);
$counter = 0;
while ( FALSE !== ($file = readdir( $directory )) )
{
 if(endswith($file, "jpg"))
 {
  $counter++;
  $files[] = $file;
 }
}
$counter--;
$which   = rand(0,$counter) ;
$imagepath = $dirimage . "\\" . $files[$which];
?>
<img src="<?php print $imagepath ?>" />

<!--    Ending banner  -->
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/support/attachments/20110226/f3151de7/attachment.html 


More information about the support mailing list