View Single Post
  #2 (permalink)  
Old December 30th, 2008, 03:35 AM
zeronexxx zeronexxx is offline
Authorized User
Points: 175, Level: 3
Points: 175, Level: 3 Points: 175, Level: 3 Points: 175, Level: 3
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Dec 2008
Location: London
Posts: 37
Thanks: 1
Thanked 5 Times in 5 Posts
Default

try the following code plz.

Code:
<html>
    <head>HTML Page</head>
    <body>
        <form method="post" action="checkbox.php">
            have you eaten shrimp before?
            <input type="checkbox" name="choice"  />
            <br>
            <br>
            <input type="submit" name="action" value="Submit">
        </form>
    </body>
</html>
Code:
<html>
    <head>PHP File(checkbox.php)</head>
    <body>
        <pre>
        <?php
            echo $_POST['choice'];
            echo "\n";
            print_r($_POST);
            echo "\n";
            print_r($_GET);
        ?>
        </pre>
    </body>
</html>
thanks
Reply With Quote