Page 60 - Corso facile di PHP + MYSQL
P. 60
// loop tra i risultati della query del database, visualizzandoli in tabella
while($row = mysql_fetch_array( $result )) {
// emissione del contenuto di ogni riga in una tabella
echo “<tr>”;
echo ‘<td>’ . $row[‘IdUtente’] . ‘</td>’;
echo ‘<td>’ . $row[‘User’] . ‘</td>’;
echo ‘<td>’ . $row[‘Password’] . ‘</td>’;
echo ‘<td><a href=“edit.php?id=’ . $row[‘IdUtente’] . ’”>Modifica</a></td>’;
echo ‘<td><a href=“delete.php?id=’ . $row[‘IdUtente’] . ’”>Cancella</a></td>’;
echo “</tr>”;
}
// chiude la tabella>
echo “</table>”;
?>
<p><a href=“insert.html”>Aggiungi un nuovo record</a></p>
<p><a href=“insert.html”>Aggiungi un nuovo record</a></p>
Un link di richiamo al form insert.html che ci occorrerà per inserire i dati nel database
attraverso il file insert.php
Ricordiamo i due file già descritti:
insert.html
<html>
<head>
<title>Esempio inserimento dati</title>
</head>
<body>
<form action=“insert.php” method=“post”>
Username: <input name=“user” type=“text”/>
Password: <input name=“pass” type=“text”/>