Forum Moderators: coopster
checkbox1 checkbox2
I would like it to be like this:
checkbox1
checkbox2
Here's the abstract of my scripts:
<?php
if(isset($_POST['checkbox1'])){
echo $_POST['checkbox1'];
}
if(isset($_POST['checkbox2'])){
echo $_POST['checkbox2'];
}
?>
Thanks