tabelle con i css e nn tramite echo"<table border='1'>

  • Creatore Discussione Creatore Discussione marzar
  • Data di inizio Data di inizio

marzar

Utente Attivo
8 Ott 2010
53
0
6
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:
ciao
se nel css hai definito un id o una classa per la tabella:

echo"<table id='pinco'>"; o echo"<table class='pinco'>";
analogo discorso eventualmente se con formattazione diversa per i vari tag <tr>, <th>, <td>

scusa dimenticavo, se nel css metti la voce
table{......}
basta
echo"<table>";
 

Discussioni simili