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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<!-- Date de création: 21/01/2008 -->
<head>
<link rel="StyleSheet" type="text/css" href="../css/index.css">
<style type="text/css">
h1
{
color:red;
}
</style>
</head>
<body>
<img src="../../28371Projet/images/unePizza.gif" class="photoLogo" title="Pizza aux champignons"></img>
<img src="../images/livreurPizza2.jpg" class="livreurPizza"></img>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="nouveautes.html">Nouveautes</a></li>
<li><a href="photos.html" target="_blank">Photos</a></li>
<li>Nos Pizzas</li>
<li><a href="contact.html">Contact</a></li>
</ul>
<br><br>
<table>
<tr>
<td valign="top"><br>
<h1>Nos menus</h1>
</td>
</tr>
<?php echo "bonjour";
$link = mysql_connect("127.0.0.1","lolo123","141312");
$bdlink=mysql_select_db("commande",$link);
$query_ins="SELECT * FROM produits";
$result2=mysql_query($query_ins,$link);
while($myrow=mysql_fetch_array($result2)){
<tr>
<td>echo $myrow[id_produit];</td>
</tr>
}
mysql_close($link);
?>
</table>
</body>
</html> |
Partager