ciao a tutti, ho preso da web delle righe per poter impaginare al meglio una select fatta con mysql; adattandolo a quello che avevo già fatto funziona bene.
Quello che non risco a fare è nascondere le pagine quando eseguo una ricerca mirata, ovvero, se dico a php fammi vedere i campi che hanno data "21/04/2021", la prima pagina che mi presenta è quella corretta....ma in più mi fa vedere la numerazione delle pagine successive, che se clicco sono tutto il DB...come posso visualizzare il numero delle pagine riferite alla sola ricerca?
Grazie per l'aiuto.
Quello che non risco a fare è nascondere le pagine quando eseguo una ricerca mirata, ovvero, se dico a php fammi vedere i campi che hanno data "21/04/2021", la prima pagina che mi presenta è quella corretta....ma in più mi fa vedere la numerazione delle pagine successive, che se clicco sono tutto il DB...come posso visualizzare il numero delle pagine riferite alla sola ricerca?
Grazie per l'aiuto.
cn = new mysqli ("$server","$username","$password","$database");
$intervento= $_GET['intervento'];
$data= $_GET['data'];
$fermo= $_GET['fermo'];
$reparto= $_GET['reparto'];
$linea= $_GET['linea'];
$macchina= $_GET['macchina'];
$nRisultatiPerPagina = 100;
$ql= $cn->query("SELECT COUNT(*) as conteggio FROM dati");
$array = $ql-> fetch_assoc();
$totaleRighe = $array['conteggio'];
$totalePagine = ceil($totaleRighe / $nRisultatiPerPagina);
if ( isset($_GET['page'])){
if($_GET['page'] >1){
$start = ($_GET['page']-1) * $nRisultatiPerPagina;
}else{
$start = 0;
}
}else{
$start = 0;
}
$query = $cn->query ("SELECT * FROM dati WHERE (reparto LIKE '%".$reparto."%') AND (fermo LIKE '%".$fermo."%') AND (intervento LIKE '%".$intervento."%') AND (linea LIKE '%".$linea."%') AND (macchina LIKE '%".$macchina."%') AND (data LIKE '%".$data."%') ORDER BY data desc LIMIT ".$start.",".$nRisultatiPerPagina) or die(mysql_error());
?>
<div id="templatemo_header_wrapper">
<div id="templatemo_header">
<div id="templatemo_wrapper">
<p><br/>
</p>
<br/>
</div>
</div>
<p>
</p>
<p> </p>
</div>
<div id="drop-menu">
<div id="templatemo_wrapper">
<ul id="menu">
<li><a href="..\manutenzione" class="current">Home</a></li>
<li><a href="ricerca.html">Ricerca</a></li>
</ul>
</div>
</div>
<div id="templatemo_content_wrapper_dima">
<div class="sidebar_box" >
<p><br />
<br />
</p>
<table width="977" border="0" align="center">
<tbody>
<tr>
<td width="682" align="center" style="font-size: 19px"><p><strong>Registrazioni</strong></p>
<p> </p></td>
</tr>
<tr>
<td align="center"><table width="1091" border="1" align="center" cellspacing="5" margin-right:= "dwcopytype="CopyTableRow"">
<tbody>
<tr style="height:">
<td width="36" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span"> <strong>DATA</strong></span></td>
<td width="86" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">OPERATORE</td>
<td width="120" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">INTERVENTO</span></td>
<td width="123" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">FERMO</span></td>
<td width="123" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">TURNO</span></td>
<td width="80" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">REPARTO</span></td>
<td width="114" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">LINEA</span></td>
<td width="114" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">MACCHINA</span></td>
<td width="114" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">ATTIVITA</span></td>
<td width="114" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">DURATA</span></td>
<td width="114" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">DESCRIZIONE</span></td>
<td width="114" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">COMPLETATO</span></td>
<td width="56" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">MODIFICA</span></td>
<td width="56" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; color:#FF0000;" span="span">ELIMINA</span></td>
</tr>
<?php
while ($riga = mysqli_fetch_array($query)){
$data = $riga['data'];
$operatore = $riga['operatore'];
$intervento = $riga['intervento'];
$fermo= $riga['fermo'];
$turno = $riga['turno'];
$reparto = $riga['reparto'];
$linea = $riga['linea'];
$macchina = $riga['macchina'];
$attivita = $riga['attivita'];
$durata = $riga['durata'];
$descrizione = $riga['descrizione'];
$completato = $riga['completato'];
$id = $riga['id'];
?>
<tr style="height:">
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"><strong> <?php echo $data;?> </strong></span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif' ; font-size: 14px"> <?php echo $operatore;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $intervento;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $fermo;?> </span></td>
<td align="center" align="center" > <span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $turno;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $reparto;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $linea;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $macchina;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $attivita;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $durata;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $descrizione;?> </span></td>
<td align="center" align="center" ><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"> <?php echo $completato;?> </span></td>
<td align="center"><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"><a href="edit_operatore.php?id=<?php echo $id; ?>">Edit</a></span></td>
<td align="left"><span style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'; font-size: 14px"><a href="delete.php?id=<?php echo $id; ?>">Delete</a></span></td>
</tr>
<ul>
<?php
$i++;
}
echo "Page:";
for ($x = 1; $x <= $totalePagine; $x++){
$currentStyle ="";
if ($x==$currentPage)
$currentStyle = "";
else
$currentStyle ="";
echo "<li style=\" ".$currentStyle."margin:5px;border:sold 1px #777;display:inline;padding:5px;\"><a href='./test.php?page=".$x."'>".$x."</a></li>";
}
?>
</ul>