random-fotos-uit-diverse-mappen

Gesponsorde koppelingen

PHP script bestanden

  1. random-fotos-uit-diverse-mappen

« Lees de omschrijving en reacties

<center><table border="0" width="60%" id="table1">
<tr>
<td>


</body>



Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
error_reporting(E_ALL);
$aantal_mappen=5;
for($i=1;$i<=$aantal_mappen;$i++){
   $dir = 'map/map'.$i.'/';





//$map = array('/map/map'.$i.'/'');
$map = array('map/map'.$i.'/');



$aantal = count($map) - 1;
$nmr = rand(0,$aantal);
$dir = opendir($map[$nmr]);






$afbeelding = array();






// Haal de gegevens uit dir
while(false !== ($file = readdir($dir)))
{

    if(($file !== ".") && ($file !== ".."))
    {

        list($filename, $ext) = explode(".", $file);
        $ext = strtolower($ext);
        if(($ext == "jpg") || ($ext == "png") || ($ext == "gif"))
        {

            $afbeelding[] = $file;
        }
    }
}

closedir($dir);

// Telt aantal afbeeldingen in map en maakt een random getal uit dat aantal.
$aantal = count($afbeelding) - 1;
$rand = mt_rand(0, $aantal);

//echo <center>;
echo '<a href="http://www.website.nl/'.$map[$nmr].'"><img src="'.$map[$nmr].$afbeelding[$rand].'"width="150" height="150"></a>';


echo '&nbsp;';


# haalt foto's uit verschillende mappen
# in de constructie map<map1,map2 etc




};
?>

</td>
</tr>
</table>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.