Beim Absenden von Formulardaten soll prüft werden, ob Daten bereits vorhanden sind. Komm nich weiter:
Gruss
PHP:
?>
<form action="<?php echo basename($PHP_SELF)?>" method="POST" name="loginformular" onSubmit="return chkloginform()">
<table align="center">
<tr><td>Tod:</td><td><input type="text" name="tod" size="45" maxlength="25"></td></tr>
</table>
<?php
$urlda = "SELECT * FROM $tbname WHERE tod = '$tod'";
$urldaa = mysql_query($urlda);
$urldab = mysql_fetch_array($urldaa);
if (isset($urldab)) {
echo ("<h4>Tod bereits vorhanden</h4>");
exit; }
Gruss