<?php
$db = mysqli_connect('rdbms.strato.de','dbu582348','RiderHaggard_1925');
mysqli_select_db($db,'dbs9907747');
$requete = "SELECT * from newbiblio_vo where id>99 and id<200 and numero<>'' " ;
$result = mysqli_query ($db,$requete);
?>
<table width="650" border="0" cellspacing="5" cellpadding="0" align="center">
<?php while($perso= mysqli_fetch_array($result)) {
$titre_vo= $perso["titre_vo"];
$id= $perso["id"];
?>
<tr valign="top">
<td width="10%">
<div align="center"><?php echo $perso["numero"]; ?></div>
</td>
<td width="90%">
<div align="left"><a href="mars_roman.php?init=<?php echo $id; ?>"><?php echo $titre_vo; ?></a></div>
</td>
</tr>
<?php } ?>
</table>