ok I want to make a form check to see if a person filled in all the information.
the problem is now that the "submit" button is not a "input type="submit" button, but it is a javascript like this
<script language="javascript">
function abschicken() {
document.forms[0].submit()
}
</script>
<a href="javascript:abschicken()" class="link1"><b>> senden</b>
now I want my php script is that it checks if the user has pushed the button "submit":
like this
if ($submit) { etc. etc. etc.
now how can I all this javascript?