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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<?php
session_start();
?>
<body>
<!-- CONTENT -->
<div class="content-center">
<div id="products-list">
<header>
<p class="counter"><strong>01-08</strong> sur 40 créations</p>
<form method="GET" action="">
<?php
mysql_connect("127.0.0.1","root","") or die("erreur de connexion au serveur".mysql_error());
// Ouverture de la base de données Terminale
mysql_select_db("projet") or die ("erreur de connexion à la base projet");
?>
<b>Nos GSM</b> </td><td>
<select name="trie" action="" style="width:230px">
<option>----GSM----</option>
<?php
$sql = "select lib_gsm from info_gsm";
$rep = mysql_query("$sql") ;
while($data = mysql_fetch_assoc($rep))
{
echo "<option value='nomG'>".$data['lib_gsm']."</option>";
}
?>
</select>
</form>
<div class="products">
<?php
if(isset($_GET['trie'])) {
switch($_GET['trie']) {
case 'nomG':
$tri = $data['lib_gsm'];
break;
}
mysql_connect("127.0.0.1","root","") or die("erreur de connexion au serveur".mysql_error());
// Ouverture de la base de données Terminale
mysql_select_db("projet") or die ("erreur de connexion à la base projet");
query="SELECT * FROM info_gsm ORDER BY ".$tri." ";
// On affiche chaque entrée une à une
$res = mysql_query($query) or die(mysql_error());
while ($donnees = mysql_fetch_assoc($res)) {
?>
<p>
<article>
<figure><a href="produit.php?ID=<?php echo $donnees['id_info']; ?>" title="Informations produits"><img src="<?php echo $donnees['photo']; ?>" alt="" /></figure>
<figcaption>
<h2>
<span class="title"><?php echo $donnees['prix']; ?></span>
<span class="marque"><?php echo $donnees['marques']; ?> <?php echo $donnees['ref']; ?></span>
<br />
</h2>
<br />
</figcaption>
</article>
</em>
</p>
</body>
</html> |
Partager