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
include("connec_bdd.php");
$requete="select * from SAN_TRAMERO where tr_ine11='50297001701' and tr_codvia='14860' and tr_tiponum='2'";
$stmt=ociparse($connexion, $requete);
ociexecute($stmt);
$nb_zona=0;
$z=0;
while(ocifetch($stmt))
{
$tablo_inf[$nb_zona]=ociresult($stmt,"TR_EXTRINFNUM");
$tablo_sup[$nb_zona]=ociresult($stmt,"TR_EXTRSUPNUM");
$j=$tablo_inf[$nb_zona];
while ($j<=$tablo_sup[$nb_zona])
{
$tab[$z]=$j;
$z++;
$j=$j+2;
}
$nb_zona++;
}
$w=0;
while ($w<$z)
{
echo $tab[$w]."<br />";
}
?> |
Partager