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
| <?php
session_start();
header("Content-type: image/jpeg" );
require("conf.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans titre</title>
</head>
<body>
<?php
$marque = htmlentities($_POST['marque']);
$designation =$_POST['designation'];
$etat = htmlentities($_POST['etat']);
$prix = htmlentities($_POST['prix']);
$detail=htmlentities($_POST['detail']);
$detail_anglais=htmlentities($_POST['detail_anglais']);
$fichier = basename($_FILES['avatar']['name']);
if($marque==NULL or $designation==NULL or $etat==NULL or $prix==NULL or $detail==NULL or $fichier==NULL
or $detail_anglais==NULL )
{
echo '<a href="creation_articles.php">vous avez oubie un champs</a>';
}
else
{
$connexion = mysql_connect("localhost","root","")
or exit("Erreur 101") ;
mysql_select_db( "odeon" , $connexion)
or exit("Erreur 102") ;
echo "Cet article a bien été enregistré<br>";
$dossier = '../Articles_retaillees/';
if(move_uploaded_file($_FILES['avatar']['tmp_name'], $dossier . $fichier)) //Si la fonction renvoie TRUE, c'est que ça a fonctionné...
{
}
else //Sinon (la fonction renvoie FALSE).
{
die('Echec de l\'upload ! ( avez vous oublie l\'image)');
}
$extensions = array('.png', '.gif', '.jpg', '.jpeg');
// récupère la partie de la chaine à partir du dernier . pour connaître l'extension.
$extension = strrchr($_FILES['avatar']['name'], '.');
//Ensuite on teste
if(!in_array($extension, $extensions)) //Si l'extension n'est pas dans le tableau
{
$erreur = '<br>Vous devez uploader un fichier de type png, gif, jpg, jpeg, txt ou doc...';
}
// taille maximum (en octets)
$taille_maxi = 100000;
//Taille du fichier
$taille = filesize($_FILES['avatar']['tmp_name']);
if($taille>$taille_maxi)
{
$erreur = 'Le fichier est trop gros...';
}
if(isset($_POST['tourne']))
$tourne='oui';
else $tourne='non';
$sql2 ="INSERT INTO article VALUES ('', '$marque', '$designation', '$etat', '$prix','$detail','$detail_anglais','$fichier','$tourne')";
mysql_query($sql2) or die('Erreur SQL !'.$sql2.'<br>'.mysql_error());
}
?>
<table border="1" bgcolor="white" align="center" width="789">
<tr bgcolor='white'>
<td height="22" colspan=10 align="center" background="./images/boutoncategorie.jpg">
Recherche par marque</td>
</tr>
<tr bgcolor='white'>
<td width="76"><font color="#ff9900">marque</font></td>
<td width="108"><font color="#ff9900">designation</font></td>
<td width="58"><font color="#ff9900">etat</font></td>
<td width="53"><font color="#ff9900">prix</font></td>
<td width="150"><font color="#ff9900">detail</font></td>
<td width="224"><font color="#ff9900">detail anglais</font></td>
<td width="60"><font color="#ff9900">image</font></td>
<td width="8"><font color="#ff9900">tourner</font></td>
<td width="1"><font color="#ff9900"></font></td>
</tr>
<td height="7" colspan=6 align="center"></td>
<?
$query=mysql_query("select * from article where designation='$designation'");
$donnees= mysql_fetch_array($query); //boucle affichant les resultats
echo"<tr><td> <font size=2.5>".$donnees['marque']."</font></td><td>".nl2br($donnees['designation'])."</td><td>".$donnees['etat']."</td><td>".$donnees['prix']."</td><td>".$donnees['detail']."</td><td>".$donnees['detail_anglais']."</td><td>".$donnees['image']."</td><td>".$donnees['tourner']."</td><td><a href='page_produit.php?prod=".$donnees['id']."'>FICHE PRODUIT</a></td><td><a href='destruction.php?prod=".$donnees['image']."' ><center>detruire</center></a></td></tr>";
$id= $donnees['id'];
?>
</table><?php
if($donnees['tourner']=='oui')
{
$req=mysql_query("select * from article where image='kid7.jpg'");
$donnees=mysql_fetch_array($req);
$fichier='../Articles_retaillees/'.$donnees['image'];
$source = imagecreatefromjpeg($fichier);
//Affichage
imagejpeg($source);
}
?>
</body>
</html> |
Partager