Ci sono quasi ... ho creato i file php per inviare i dati al database, ho creato la tabella sul database, ed ho creato il file che rimanda i contenuti nell'ultimo passaggio su una pagina da me chiamata formazioni inviate. L'unico problema è che mi scrive il nome della tabella "anagrafica" ed il nome dei campi "name" "address" ma non il loro contenuto. Vi incollo il codice php da me inserito ... se mi potete aiutare a far visualizzare i contenuti ve ne sarei immensamente grato.
codice php:
<style>
table.db-table { border-right:5px solid #ccc; border-bottom:5px solid #ccc; }
table.db-table th { background:#eee; padding:5px; border-left:1px solid #ccc; border-top:1px solid #ccc; }
table.db-table td { padding:5px; border-left:1px solid #ccc; border-top:1px solid #ccc; }
</style>
<?php
/* connect to the db */
require 'config_db.php';
require 'connessione_db.php';
//$connection = mysql_connect('localhost','username','password');
//mysql_select_db('my_db',$connection);
/* show tables */
$result = mysql_query('SHOW TABLES') or die('cannot show tables');
while($tableName = mysql_fetch_row($result)) {
$table = $tableName[0];
echo '<h3>',$table,'</h3>';
$result2 = mysql_query('SHOW COLUMNS FROM '.$table) or die('cannot show columns from '.$table);
if(mysql_num_rows($result2)) {
echo '<table cellpadding="0" cellspacing="0" class="db-table">';
echo '<tr><th>Field</th><th>Type</th><th>Null</th><th>Key</th><th>Default<th>Extra</th></tr>';
while($row2 = mysql_fetch_row($result2)) {
echo '<tr>';
foreach($row2 as $key=>$value) {
echo '<td>',$value,'</td>';
}
echo '</tr>';
}
echo '</table>
';
}
}
?>
Url:
http://www.sanguebiancazzurro.com/formazioni-inviate.php