foto-viewer

Gesponsorde koppelingen

PHP script bestanden

  1. foto-viewer

« Lees de omschrijving en reacties

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<html>
<head>
<style type="text/css">
.mlink {
 font-family: comic sans ms, times new roman;
 font-color: black;
 text-decoration : none;
}
.link:link {
 text-decoration : none;
 color: blue;
}
.link:visited {
 text-decoration : none;
 color: blue;
}
.link:hover {
 text-decoration : none;
 color: green;
}
</style>
    <title>Fotos lustrum van DE Tennisclub</title>
</head>
<body bgcolor="#FA5820">
<font face="comic sans ms">
<?php
if(empty($_GET["foto"])){
  ?>
<center>
<table align="center" bgcolor="green">
<tr></tr>
<tr><td></td><td>
<img src="images/lustrum101.jpg" width="400">

</td><td></td></tr><tr></tr>
</table>
<table align="center">
<tr><?php
for($i=101; $i<=109; $i++){
  echo("<td><a href=$SERVER['PHP_SELF']?foto=images/lustrum$i.jpg>
  <img src=\"images/lustrum$i.jpg\" width=100 height=100 border=0></td>\n"
);
}

?>

</tr>
</table>
<div align=right title\"Vorige serie foto's\">
<a class=link href=$SERVER['PHP_SELF']?foto=images/lustrum110.jpg&pb=110&pe=119>
    Volgende pagina</a>
</div>
 



</table>
<?php
}else{
$foto=$_GET["foto"];
?>

<center>
<table align="center" bgcolor="green">
<tr></tr>
<tr><td></td><td>
<?php
//vergroot plaatje, gekozen
$afmetingen = getimagesize($foto);

$bronbreedte = $afmetingen[0];
$bronhoogte  = $afmetingen[1];

if($bronbreedte > $bronhoogte){
?>

<img src=<?php echo($foto);?> width="400">
<?php
}else{
?>

<img src=<?php echo($foto);?> height="400">
<?php
}
?>


</td><td></td></tr><tr></tr>
</table>
<table align="center">
<tr>
<?php
if(empty($_GET['pb'])){
  for($i=101; $i<=109; $i++){
  echo("<td><a href=$SERVER['PHP_SELF']?foto=images/lustrum$i.jpg>
  <img width=100 height=100 border=0 src=\"images/lustrum$i.jpg\"></td>"
);
}

echo("
</tr>
</table>
<div align=right title=\"Volgende serie foto's\">
<a class=link href=$SERVER['PHP_SELF']?foto=images/lustrum110.jpg&pb=110&pe=119>
    Volgende pagina</a>
</div>

"
);
}
else{
$paginab=$_GET["pb"];
$paginae=$_GET["pe"];

for($i=$paginab; $i<$paginae; $i++){
  echo("<td><a href=$SERVER['PHP_SELF']?foto=images/lustrum$i.jpg>
  <img width=100 height=100 border=0 src=\"images/lustrum$i.jpg\"></td>"
);
}

$bvolgende=$paginab+9;
$evolgende=$paginae+9;
$bvorige=$paginab-9;
$evorige=$paginae-9;
echo("
</tr>
</table>
<div align=left title=\"Vorige serie foto's\">
<a class=link href=$SERVER['PHP_SELF']?foto=images/lustrum$bvorige.jpg&pb=$bvorige&pe=$evorige>
    Vorige pagina</a>
</div><div align=right title=\"Volgende serie foto's\">
<a class=link href=$SERVER['PHP_SELF']?foto=images/lustrum$bvolgende.jpg&pb=$bvolgende&pe=$evolgende>
    Volgende pagina</a>
</div>

"
);
}
}

?>


</body>
</html>

 
 

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.