J.Schulz: Beim absch. e. Formul. manchmal doppelte Eintr. in der DB

Beitrag lesen

ich habe beim absch. e. Formul. manchmal doppelte Eintr. in der DB. kann es an einem nervösen klicken des users liegen? oder an meiner validation?

hoffe ihr wisst weiter bin völlig fertig.

so ein kot:
<form action="inputdb.php" method="POST" onSubmit="return CheckForm(this)">

function CheckForm( theform )
{
 var bMissingFields = false;
 var strFields = "";

if( theform.b_first.value == '' ){
  bMissingFields = true;
  strFields += "     Bitte eintragen: Vorname\n";
 }
 if( bMissingFields ) {
  alert( "Bitte füllen Sie folgende Felder richtig aus:\n" + strFields );
  return false;
 }

return true;
}

j. schulz