Forum Moderators: coopster
<html>
<body><form action='deleteR.php' method="POST">
<input type="checkbox" name="bike">
i have a bike. <br>
<input type="checkbox" name="car">
I have a car.
<br>
<input type="submitD" value="submit">
<input type="reset" value="reset">
</form>
</body>
</html>
<?
if($_POST['bike']!=null)
echo "This is bike ";echo "<br>";
if($_POST['car']!=null)
echo " This is car.";
?>
<input type="submitD" value="submit">
Change to:
<input type="[b]submit[/b]" value="submit">