I want to do multiple delete using href link, how can i done ?
This code generate given below error.
Notice: Undefined index: action in
C:\xampp\htdocs\montu\montu\multiple.php on line 32
Warning: implode() [function.implode]: Invalid arguments passed in
C:\xampp\htdocs\montu\montu\multiple.php on line 32
<body>
    <form method="post" action="<?php $_PHP_SELF ?>">
        <table>
            <tr>
                <td>
                    <input type="checkbox" name="action[]" value="1">1
                </td>
                <td>
                    <input type="checkbox" name="action[]" value="2">2
                </td>
            </tr>
            <tr>
                <td>
                    <a href="?id">Click Me..</a>
                </td>
            </tr>
        </table>
    </form>
<?php 
    if(isset($_REQUEST['id']))
    {
        $action=implode(',',$_REQUEST['action']);//convert array value to string values
        echo $action;
    }
?>
 
     
    