random foto's op portal

Hulp nodig bij een modificaties of op zoek naar een MOD? Bekijk ons archief. Support wordt helaas niet meer verleend.
Forumregels

Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
phpBB2.0.x
Gesloten
Gebruikersavatar
desmarties
Berichten: 187
Lid geworden op: 25 aug 2005, 20:01
Locatie: Den Haag
Contacteer:

random foto's op portal

Bericht door desmarties » 15 okt 2005, 19:24

Kan ik ipv. de mod om random foto's uit mijn foto_album op de portal te plaatsen ook onderstaand script gebruiken?

Code: Selecteer alles

<?php 

$totalPics="10"; // Total photos in folder 

$photoOfTheDay = Array ( // Add up to 31 photos below 

'1' => '/startplaaten/zon_wolken.jpg' , // Name of or Path to image 
'2' => '/startplaaten/zon_water.jpg' , // Name of or Path to image 
'3' => '/startplaaten/regen.gif' , // Name of or Path to image 
'4' => '/startplaaten/noach.jpg' , // Name of or Path to image 
'5' => '/startplaaten/kerk1_lego.jpg' , // Name of or Path to image 
'6' => '/startplaaten/kerk2_lego.jpg' , // Name of or Path to image 
'7' => '/startplaaten/eendjes.jpg' , // Name of or Path to image 
'8' => '/startplaaten/jongen.gif' , // Name of or Path to image 
'9' => '/startplaaten/herfst.jpg' , // Name of or Path to image 
'10' => '/startplaaten/kameelkauwer.gif', // Name of or Path to image 
); 
// Simple PHP Script by Dave Lauderdale - Originally published at www.digi-dl.com 

// Place day of month in variable 'x' 
$x=date("d"); 

// If value of date exceeds the amount of photos then pick a random photo to display 
if($x > $totalPics) { $x=rand(1,$totalPics); } 

// Display image 
echo <<<EOC 
<br> 
<center><img src="$photoOfTheDay[$x]"></center> 
EOC; 

?> 

Gesloten