Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php
// Connecting zu DB und die Spalten auswählen
$query = mysql_query($sql) OR die(mysql_error());
$row = mysql_fetch_assoc($query);
if($_POST['feld'] !== $row['SpalteXY'])
{
die($_POST['feld']." existiert in der Datenbank nicht");
}
else
{
echo $_POST['feld']." existiert in der DB";
}
?>