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
| <?php
include "db.php";
$con = new DBConnect();
$sql = "SELECT * FROM `donnees` ORDER BY `Nom_route` ASC";
$res = $con->sendSql($sql);
echo '<table border="0" width="891">';
while ($row = mysql_fetch_array($res, MYSQL_ASSOC)){
?>
<table width="736" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="270"><?=stripslashes($row["Nom_route"])?></td>
<td width="74"><div align="right">
<?=stripslashes($row["xx"])?>
</div>
</td>
<td width="74"><p align="right">
<?=stripslashes($row["xx1"])?>
</p>
</td>
</table>
<?}
?>
<?
@$con->Uconn();
?> |