$sql="INSERT INTO Mytable(Name, Surname, Email, Confirmation, IP, Date, Market)
VALUES
('$name','$surname','$email','$ConfirmationCode','$ipi','$todayis','$market')";
// you need to run the insert query!!!
mysql_query($sql) or die(mysql_error());
// Now you can get the data back again.
$result = mysql_query("SELECT * FROM Mytable")
or die(mysql_error());
echo "<table border='1'>";
echo "<tr> <th>Name</th> <th>Age</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['id'];
echo "</td><td>";
echo $row['Name'];
echo "</td><td>";
echo $row['Surname'];
echo "</td><td>";
echo $row['Email'];
echo "</td><td>";
echo $row['Confirmation'];
echo "</td><td>";
echo $row['IP'];
echo "</td><td>";
echo $row['Date'];
echo "</td><td>";
echo $row['Market'];
echo "</td><td>";
echo $row['Approve'];
echo "</td></tr>"; }
echo "</table>";
|