<div id="left-body-part-innerpage">
    <h1 class="mainheading">Contact Us</h1>
    <div id="contactus-right-div" class="content">
    <?php session_start();
        if( isset($_POST['button2']))           
        {
            if( $_SESSION['security_code'] == $_POST['security_code'] && !empty($_SESSION['security_code'] ) ) 
            {
                $name = $_POST['name'];
                // Insert you code for processing the form here, e.g emailing the submission, entering it into a database. 
                session_destroy();
                header("Location: contactdb.php");
?>
i am getting Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at website) in website
Warning: Cannot modify header information - headers already sent by (output started at website) in website
can any one help me?
Thanks in advance....
 
     
     
     
     
     
    