SELECTRA LISTENpREISE 2015 Prezzi di listino selectra

Interrogazione tabella nazioni
<html ><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Agenzia Viaggi&Viaggi</title>
<style>
@import url(../viaggi/stileviaggi.css);
</style>
</head>
<body onLoad="inizio()" >
<div align="center">
<table border="0" width="80%" class="sfondobarra">
<tr height="161" class="barra"><td> Agenzia viaggi V&V</td>
</tr>
</table></div>
<table width="100%" border="0">
<tr ><td width="10%">&nbsp;</td><td width="80%">
<table width="100%" id="menuhome" border="0" cellspacing="0" cellpadding="0" >
<tr height="35" >
<td class="centro" ><a href="index.html.htm"
class="menu00">home</a> </td>
<td class="centro"><a href="gestione.html" class="menu00"> gestione
1 di 6
Interrogazione tabella nazioni
dati</a> </td>
<td class="centro"><a href="interroga.html" class="menu00">ricerche
viaggi</a> </td>
<td class="centro" ><a href="prenotazioni.html"
class="menu00">prenotazioni</a> </td>
<td class="centro" ><a href="partenze.html"
class="menu00">partenze</div> </td>
</tr>
</table id="menuhome">
</td>
<td width="10%">&nbsp;</td>
</tr>
<tr ><td width="10%">&nbsp;</td><td width="80%">
<div class="titolo1giallo"> Interrogazioni per pacchetti turistici</div><br><br>
<div name="centro" align="center">
<form name='richiesta' method='get' action='interroga_server.php' >
<table width="60%">
<tr> <td width="30%">nazione</td>
<td width="70%"> <select name="nazione" >
<option value=''> </option>
<option value='n1' >Madagascar </option>
<option value='n2'>Mauritius</option>
<option value='n3'>Sudafrica</option>
<option value='n4'>Namibia</option>
<option value='n5'>Ladakh</option>
<option value='n6'>India</option>
<option value='n7'>Cina</option>
<option value='n8'>Grecia</option>
<option value='n9'>Spagna</option>
<option value='n10'>Islanda</option>
</select>
</td></tr>
<tr> <td width="30%">tour operator</td><td width="70%">
<select name="touroperator" >
<option value=''> </option>
<option value='to1' >Viaggi nel Mondo </option>
<option value='to2'>Viaggi Elefante</option>
<option value='to3'>Gli Argonauti</option>
<option value='to4'>Franco Rosso</option>
<option value='to5'>Viaggi della Conchiglia</option>
<option value='to6'>Club Mediterranèe</option>
</select>
</td></tr>
<tr><td width="30%">&nbsp;</td><td width="70%">
2 di 6
Interrogazione tabella nazioni
<input type="submit" value="cerca" >
<input type="reset" value="annulla" >
</td>
</tr>
</table></form>
</div name="center">
</td>
<td width="10%">&nbsp;</td>
</tr>
</table>
</body></html>
<html ><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Agenzia Viaggi&Viaggi</title>
<style>
@import url(../viaggi/stileviaggi.css);
</style>
</head>
<body onLoad="inizio()" >
<div align="center">
<table border="0" width="80%" class="sfondobarra">
3 di 6
Interrogazione tabella nazioni
<tr height="161" class="barra"><td> Agenzia viaggi V&V</td>
</tr>
</table></div>
<table width="100%" border="0">
<tr ><td width="10%">&nbsp;</td><td width="80%">
<table width="100%" id="menuhome" border="0" cellspacing="0" cellpadding="0" >
<tr height="35" >
<td class="centro" ><a href="index.html.htm"
class="menu00">home</a> </td>
<td class="centro"><a href="gestione.html" class="menu00"> gestione
dati</a> </td>
<td class="centro"><a href="interroga.html" class="menu00">ricerche
viaggi</a> </td>
<td class="centro" ><a href="prenotazioni.html"
class="menu00">prenotazioni</a> </td>
<td class="centro" ><a href="partenze.html"
class="menu00">partenze</div> </td>
</tr>
</table id="menuhome">
</td>
<td width="10%">&nbsp;</td>
</tr>
<tr ><td width="10%">&nbsp;</td><td width="80%">
<div class="titolo1giallo"> Interrogazioni per pacchetti turistici</div><br><br>
<div name="centro" align="center">
<?php
$codnazioni = $_GET['nazione'];
$codorg = $_GET['touroperator'];
$myconn = mysql_connect('localhost', 'root', '') or die('Errore nella connessione..');
mysql_select_db('viaggi', $myconn) or die('Errore nella selezione del database database ');
if ((trim($codnazioni) !== '') and (trim($codorg) !== ''))
{
$query = "SELECT nazioni.denom, pacchetti.descrizione, pacchetti.prezzo,
touroperator.nome from nazioni, pacchetti,".
"touroperator WHERE nazioni.codnazioni='$codnazioni' AND
touroperator.codorg=$codorg AND ".
" pacchetti.codorg=touroperator.codorg AND
pacchetti.codnazioni=nazioni.codnazioni";
}
else
4 di 6
Interrogazione tabella nazioni
{
if (trim($codnazioni) !== '')
{
$query = "SELECT nazioni.denom, pacchetti.descrizione, pacchetti.prezzo,
touroperator.nome from nazioni, pacchetti,".
"touroperator WHERE nazioni.codnazioni='$codnazioni' AND ".
" pacchetti.codorg=touroperator.codorg AND
pacchetti.codnazioni=nazioni.codnazioni";
}
if (trim($codorg) !== '')
{
$query = "SELECT nazioni.denom, pacchetti.descrizione, pacchetti.prezzo,
touroperator.nome from nazioni, pacchetti,".
"touroperator WHERE touroperator.codorg=$codorg AND ".
" pacchetti.codorg=touroperator.codorg AND
pacchetti.codnazioni=nazioni.codnazioni";
}
}
if ((trim($codnazioni) == '') and (trim($codorg) == ''))
{
$query = "SELECT nazioni.denom, pacchetti.descrizione, pacchetti.prezzo,
touroperator.nome from nazioni, pacchetti,".
"touroperator WHERE pacchetti.codorg=touroperator.codorg AND
pacchetti.codnazioni=nazioni.codnazioni";
}
$result = mysql_query($query, $myconn) or die('Errore..di inserimento.');
$numrows = mysql_num_rows($result);
if ($numrows==0){
echo "nessun risultato per la richiesta fatta";
}
//Se invece trovo delle occorrenze...
else
{
echo("<div align='center'><table width='60%'><tr>".
"<td width='20%'><b>nazione</b></td><td
width='35%'><b>pacchetto</b></td><td width='15%'><b>prezzo</b></td><td
width='30%'><b>touroperator</b></td>".
"</tr>");
//Avvio un ciclo for che si ripete per il numero di occorrenze trovate
for($x=0; $x<$numrows; $x++)
{
$resrow = mysql_fetch_row($result);
$denom = $resrow[0];
$descrizione = $resrow[1];
5 di 6
Interrogazione tabella nazioni
$prezzo = $resrow[2];
$touroperator = $resrow[3];
echo("<div align='center'><table width='60%'><tr>".
"<td width='20%'>$denom</td><td width='35%'>$descrizione</td><td
width='15%'>$prezzo</td><td width='30%'>$touroperator</td>".
"</tr>");
}
echo("</table></div>");
}
mysql_close($myconn);
?>
<form name='richiesta' method='get' action='interroga.php' >
<br><input type="submit" value="nuova interrogazione" >
</form>
</td>
<td width="10%">&nbsp;</td>
</tr>
</table>
</body></html>
6 di 6