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
|
<?php
mysql_connect("localhost", "root","");
mysql_select_db("pfe");
$req=("select jour from menu where jour = 'Lundi' ");
$res=mysql_query($req);
$req1=mysql_query("select jour from menu where jour = 'Mardi' ");
$req2=("select jour from menu where jour = 'Mercredi' ");
$res2=mysql_query($req2);
$req3=("select jour from menu where jour = 'Jeudi' ");
$res3=mysql_query($req3);
$req4=("select jour from menu where jour = 'Vendredi' ");
$res4=mysql_query($req4);
$req5=("select jour from menu where jour = 'Samedi' ");
$res5=mysql_query($req5);
$req6=("select jour from menu where jour = 'Dimanche' ");
$res6=mysql_query($req6);
?>
<?php echo $res;?> <br/>
<?php echo $req1;?> <br/>
<?php echo $res2;?> <br/>
<?php echo $res3;?> <br/>
<?php echo $res4;?> <br/>
<?php echo $res5;?> <br/>
<?php echo $res6;?> <br/> |
Partager