Hallo habe hier ein kleines Problem möchte eine Checkbox in meinen Formular einbauen so dass das Formular erst abgeschickt wird wenn das Häkchen gesetzt ist.
Kann mir einer da bitte helfen?
Kann mir einer da bitte helfen?
PHP-Code:
<form action="<?php echo $siteurl; ?>/index.php?action=links&a=submit" method="POST" name="form" enctype="text/plain" onsubmit="return checkForm(this)">
<table class="boxestext" border="0">
<?php if (!empty($linkErrorText)) { ?>
<tr>
<td colspan="2" align="center"><b><tt><?php echo $linkErrorText; ?></tt></b></td>
</tr>
<?php } ?>
<tr>
<td><tt>Name:</tt></td>
<td><tt><input type="text" name="linktitle" size="30" maxlength="255"></tt></td>
</tr>
<tr>
<td><tt>URL:</tt></td>
<td><tt><input type="input" name="linkurl" value="http://" size="30" maxlength="255"></tt></td>
</tr>
<tr>
<td><tt>Beschreibung:</tt></td>
<td><tt><input type="input" name="linkdescription" size="30" maxlength="255"></tt></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td><tt>Email:</tt></td>
<td><tt><input type="input" name="linkemail" size="30" maxlength="255"></tt></td>
</tr>
<tr>
<td align="center"></td>
<td align="center">
<div align="left">
<input type="checkbox" name="nameDerCheckbox"></div>
</td>
</tr>
<tr>
<td align="center"></td>
<td align="center">
<div align="left">
<input type="submit" name="send" value="go"></div>
</td>
</tr>
</table>
</form>
Kommentar