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
| <?php
if(!empty ($_FILES)){
require("imgClass.php");
$img=$_FILES['img'];
$ext=strtolower(substr($img['name'],-3));
$allow_ext = array("jpg","png","gif");
if(in_array($ext,$allow_ext)){
move_uploaded_file($img['tmp_name'],"images/".$img['name']);
Img::creerMin("images/".$img['name'],"images/min",$img['name'],215,112);
Img::convertirJPG("images/".$img['name']);
}
else{
$erreur = "votre fichier n'est pas une image";
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="fr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="zoombox/jquery.js"></script>
<script type="text/javascript" src="zoombox/zoombox.js"></script>
<link href="zoombox/zoombox.css" rel="stylesheet" type="text/css" media="screen" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
if(isset($erreur)){
echo $erreur;
}
?>
<form method="post" action="index.php" enctype="multipart/form-data">
<input type="file" name="img"/>
<input type="submit" name="Envoyer"/>
</form>
<?php
$dos="images/min";
$dir = opendir($dos);
while($file= readdir($dir)){
$allow_ext = array("jpg",'png','gif');
$ext=strtolower(substr($file,-3));
if(in_array($ext,$allow_ext)){
?>
<?php
}
}
$files = glob("images/min/*.*");
$compteur = count($files);
echo "Il y a <font color=#FF0000>$compteur</font>images dans le dossier min ";
$nb_colonne=4;
$nb_ligne= ($compteur) / ($nb_colonne);
echo " et il y a <font color=#FF0000>$nb_ligne </font> lignes dans la gallerie";
?>
<table>
<?php
for ($i = 0; $i < $compteur; $i+=4) { // On augmente de 4 à chaque passage de la boucle et elle tourne tant qu'on a pas atteint le compte
echo '<tr>';
for ($j = $i; $j < ($i + 4); $j++) { // Les quatre prochains fichiers
if (isset($files[$j])) // Vérifie qu'on n'est pas rendu trop loin
// Le nom du fichier en cours
echo '<td><a href="'.$files[$j].'" rel="zoombox[galerie]" ><img src="' . $files[$j] . '" alt="Image" ></a></td>';
}
echo '</tr>';
}
if ($dir = opendir("H:\Wamp\wamp\www\images\min")) {
while($file = readdir($dir)) {
echo "$file<br>\n";
echo'<a href="supprimerimage.php?id=.$files[$j].?">supprimer</a>';
}
}
?>
</table>
</body>
</html> |
Partager