Ho questo codice , volevo utilizzare il foglio di stile che richiamo in alto al file per aumentare l'altezza delle righe della tabella (echo "<tr class=trimmagini>" ma così non funziona vero?
HTML:
while ($row = mysqli_fetch_array($query)) {
echo "<tr class=trimmagini>";
$file = strtolower($row['IMMAGINE']);
echo "<td><img src=http://whilly.altervista.org/immaginiP/" . $file . "></td>";
echo "<td>" . $row['COD_INT_'] . "</td>";
echo "<td>" . $row['EAN'] . "</td>";
echo "<td>" . $row['DESCRIZIONE'] . "</td>";
echo "</tr>";
}
echo "</table>";