PHP:
<html>
<link rel="stylesheet" type="text/css" href="stile.css">
<head>
<?php
// Comessione database
mysql_connect("localhost", "root", "marcoprove") or die ("Connessione non riuscita: " . mysql_error());
mysql_select_db("utenti") or die ("Connessione non riuscita: " . mysql_error());
// estrazione dati
$result = mysql_query("SELECT * FROM anagrafica")
or die ("query non eseguita: " . mysql_error());
echo"<table border='1'>";
echo "<tr> <th>id</th> <th>Nome</th> <th>Cognome</th> <th>Email</th> </tr>";
// array che raccoglie i risultati
while($row = mysql_fetch_array( $result )) {
// stampa tabella
echo "<tr><th>";
echo $row['id'];
echo "</td><td>";
echo $row['Nome'];
echo "</td><td>";
echo $row['Cognome'];
echo "</td><td>";
echo $row['Email'];
}
echo "</table>";
?>
</body>
</html>
Vorrei riuscire a fare in modo che la tabella non venga più disegnata da echo"<table border='1'>";
ma tramite regole del css
come vedete ho legato il file a un css ma poi non riesco a procedere
come posso fare????
Ringrazio anticipatamente
Ultima modifica di un moderatore: