View Single Post
Old 05-06-2006, 11:10 AM  
grumpy
Too lazy to set a custom title
 
grumpy's Avatar
 
Join Date: Jan 2002
Location: Holland
Posts: 9,870
PHP Code:
function show_random_image(){
  
max_pics 30;
  
pic_base ="<img src='pics/";
  
pic_ext  =".jpg'>";
  var 
ran_unrounded=Math.random()* max_pics;
  var 
ran_number=Math.floor(ran_unrounded);
  
document.write(pic_base+ran_number+pic_ext);

some where on the page

PHP Code:
<script>show_random_image()</script> 

shows pic between 0-30
__________________
Don't let greediness blur your vision | You gotta let some shit slide
icq - 441-456-888
grumpy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote