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
| <?php require_once('Connections/brunconnection.php'); ?>
<?php
mysql_select_db($database_brunconnection, $brunconnection);
$query_Recordset1 = "SELECT * FROM devis";
$Recordset1 = mysql_query($query_Recordset1, $brunconnection) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="preloadImages();">
<div align="center"><img src="images/spacer.gif" width="1" height="1">
<table width="800" border="0" cellspacing="0">
<tr>
<td bgcolor="#0066CC"><a href="index.php"><img src="images/bannieresite.gif" width="800" height="100" border="0"></a></td>
</tr>
<tr>
<td bgcolor="#0066CC">
<div align="right"><em><font color="#FFFFFF" size="2" face="Arial"><strong>Location
et vente de matériel de ski et de sports d'hiver à Saint
Pierre de Chartreuse</strong></font></em></div></td>
</tr>
</table>
<?php do { ?>
<table width="806" border="1" cellpadding="0" cellspacing="0"bordercolor="#0066CC" style="width:800">
<tr>
<td width="200"> <div align="center"><font face="Impact">type de demande</font></div></td>
<td width="600"><?php echo $row_Recordset1['TYPE']; ?></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">numéro</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['id']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">date</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['date']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">Civilité</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['civilite']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">Nom</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['nom']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">email</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['email']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">téléphone</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['telephone']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">type de matériel
souhaité</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['materiel']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">durée de
location</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['duree']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">niveau sportif</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['niveau']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">taille</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['taille']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">poids</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['poids']; ?></font></p></td>
</tr>
<tr>
<td width="200"> <div align="center"><font face="Impact">pointure</font></div></td>
<td width="600"> <p><font size="2" face="Arial"> <?php echo $row_Recordset1['pointure']; ?></font></p></td>
</tr>
<tr>
<td width="200" valign="top"> <div align="center"><font face="Impact">commentaire</font></div></td>
<td width="600" align="left" valign="top" nowrap> <p><font size="2" face="Arial"> <font size="1"><?php echo $row_Recordset1['commentaire']; ?></font></font></p></td>
</tr>
<tr>
<td bgcolor="#0066CC"><img src="images/spacer.gif" width="170" height="20"></td>
<td bgcolor="#0066CC"> </td>
</tr>
</table>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?> |
Partager