$result = mysql_query („SELECTEER * UIT Mytable waar Email='$ email en Confirmation='$ ConfirmationCode'")
of matrijs (mysql_error ());
als (mysql_num_rows ($result) == 0)
{
echo „Fout: Geen gevonden gelijke“;
}
anders
{
mysql_query („UPDATE Mytable VASTGESTELDE Approve='1 WAAR Email='$ email'")
of matrijs (mysql_error ());
}
echo „ „;
echo „ Naam | Leeftijd | „;
// houdt krijgend de volgende rij tot er niet meer te krijgen zijn
terwijl ($row = mysql_fetch_array ($result)) {
// Print out de inhoud van elke rij in een lijst
echo „„;
echo $row [„identiteitskaart“];
echo „ | „;
echo $row [„Naam“];
echo „ | „;
echo $row [„Achternaam“];
echo „ | „;
echo $row [„E-mail“];
echo „ | „;
echo $row [„Bevestiging“];
echo „ | „;
echo $row [„IP“];
echo „ | „;
echo $row [„Datum“];
echo „ | „;
echo $row [„Markt“];
echo „ | „;
echo $row [„keur“ goed];
echo „ | „; }
echo „ „;
}
|