How do I destroy a session in php?

the thing is when the user clicks the logout button the session will end and he will be redirected to the index.php here's my code

Customer.php

<?php 

session_start(); 
#include("Connection.php");
if (isset($_POST['submit'])) { 
$name = $_POST['customerName']; 
$_SESSION['user'] = $name; 
} 
if (isset($_SESSION['user'])) { echo "Hello {$_SESSION['user']}, welcome back"; }
else{echo "walang tao";}

$sql="INSERT INTO ORDERS(Name) VALUES('$name')";
mysql_query($sql);

session_destroy();
?>
<button><a href="Customer.php"></a></button>

and this is from the index.php where the user wants to log in again

<?PHP 
/* this must go before any html */ 
session_start(); 

if (isset($_SESSION['user'])) { 
header("location: Customer.php"); 
} 
?> 
     <div class="sign">
                    <h2>Welcome</h2>
                    <form action = "Customer.php" method = "POST">
                    Customer Name:<input type = "text" name="customerName">
                    <input type = "submit" name = "submit">
                    </form> 
link|improve this question
replace the index.php with Customer.php – Kyel john David Aug 30 '11 at 14:12
3  
php.net/session_destroy – deceze Aug 30 '11 at 14:13
7  
Say hello to Bobby Tables for me when you see him. – Linus Kleen Aug 30 '11 at 14:14
There already is a session_destroy call in your Customer.php file? Where does the 'logout button' link to? – Rijk Aug 30 '11 at 14:52
because I want the user to redirected to the index.php page – Kyel john David Aug 30 '11 at 16:31
feedback

2 Answers

session_start();
session_destroy();
link|improve this answer
1  
I don't think this is the solution to his problem.. – Rijk Aug 30 '11 at 14:51
feedback
You may also used unset() function for freeup session Enviourment.

if (isset($_SESSION['user']))
{
unset($_SESSION['user']);
header('location:index.php');
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.