id foto zoeken bij id uit database
Uitlezen.php
Code (php)
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
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
<?php
ini_set('display_errors', 'On');
error_reporting(E_ALL);
echo '
<b>Verkoop </b>
<table cellspacing="0" cellpadding="0" >
<tr>
<td>
<table cellspacing="0" cellpadding="5" width="100%">';
$image_types = array("jpg","gif","bmp","png","jpeg,JPEG.JPG,PNG.GIF");
$plaatjes_reeks = "";
$mapnaam = "/verkoop";
$map = opendir(".{$mapnaam}");
$count = 0;
while (false!==($bestand = readdir($map))) {
if ($bestand != "." && $bestand != "..") {
$ext = explode('.',$bestand);
$extl = sizeof($ext) - 1;
$ext = strtolower($ext[$extl]);
if ( in_array($ext,$image_types) ){
if($count%3 == 0) {
$plaatjes_reeks .= '</tr><tr>';
}
$plaatjes_reeks .= "<td><img height=75 src= \"verkoop/" . $bestand . "\" />
</td>";
$count++;
}
}
}
if ( $plaatjes_reeks != "" ){
echo ($plaatjes_reeks);
}
closedir($map);
echo '
</table>
</td>
</tr>
</table>';
?>
ini_set('display_errors', 'On');
error_reporting(E_ALL);
echo '
<b>Verkoop </b>
<table cellspacing="0" cellpadding="0" >
<tr>
<td>
<table cellspacing="0" cellpadding="5" width="100%">';
$image_types = array("jpg","gif","bmp","png","jpeg,JPEG.JPG,PNG.GIF");
$plaatjes_reeks = "";
$mapnaam = "/verkoop";
$map = opendir(".{$mapnaam}");
$count = 0;
while (false!==($bestand = readdir($map))) {
if ($bestand != "." && $bestand != "..") {
$ext = explode('.',$bestand);
$extl = sizeof($ext) - 1;
$ext = strtolower($ext[$extl]);
if ( in_array($ext,$image_types) ){
if($count%3 == 0) {
$plaatjes_reeks .= '</tr><tr>';
}
$plaatjes_reeks .= "<td><img height=75 src= \"verkoop/" . $bestand . "\" />
</td>";
$count++;
}
}
}
if ( $plaatjes_reeks != "" ){
echo ($plaatjes_reeks);
}
closedir($map);
echo '
</table>
</td>
</tr>
</table>';
?>
Toevoeging op 07/10/2011 08:59:47:
Kan iemand mij helpen want ik kom der niet meer uit.
Gewijzigd op 07/10/2011 10:35:13 door Dirk Renes
Let wel op de double-quotes anders ga je de mist in!!!
Code verwijderd, graag in het vervolg enkel relevante code plaatsen of op internet een website te gebruiken als pastebin.com[/modedit]
Gewijzigd op 20/10/2011 19:46:46 door Bas IJzelendoorn
Kan een moderator hier a.u.b. even naar kijken? Zulke kinderachtige personen horen niet op dit forum.
Zeg, Gaylord, denk eens eventjes na. denk je dat de topic-starter zou echt iets aan 1023 regels HTML, JS en Jquery heeft als hij het in PHP op wilt lossen?
Op m'n telefoon kan ik dit niet wijzigen, te veel rotzooi... Haal het zo weg + waarschuwing..
Gewijzigd op 20/10/2011 19:32:38 door PHP Scripter
Script weggehaald -> back to topic.