Home
PHP
Jquery
Script
Styles
CSS
XML
PHP Tech World
PHP tech world consists of articles on php, jquery, script, css, mysql and etc.
Navigation
Home
PHP
Jquery
Script
Styles
CSS
XML
Home
»
Unlabelled
»
PHP:Logout Page
PHP:Logout Page
- on Wednesday, July 27, 2011 -
No comments
<?php
session_start();
unset($_SESSION["username"]);
session_destroy();
header("location:login.php");
?>
Tweet
Post a Comment
Newer Post
Older Post
Home
Analytics
Categories
Array
(2)
array_shift()
(1)
Blogger
(2)
Blogger Theme
(1)
Create new pages dynamically using php
(1)
CSS
(4)
Currency Coverter
(1)
Google
(1)
HTML
(2)
HTML5
(1)
HTML5 Canvas
(1)
Jquery
(3)
PHP
(8)
rtrim
(1)
Script
(1)
Scrolltop
(1)
Sending the data of one page to another
(1)
Styles
(1)
Template
(1)
Variable Parsing
(1)
Wordpress
(1)
XML
(1)
XML to Array
(1)
Popular Posts
HTML5 Canvas Image Rotation
As I have done some research on HTML5 canvas with image rotation. Found that we can rotate the canvas to left, right and mirror the image...
Creating mysql Database
<?php $connect = mysql_connect("localhost", "root", "") or die("Could not establish connection"...
Make text unselectable on an html page
unselectable, CSS, disble text select, restrict text selection, disable selecting text, javascript diabling text select, css siabling text s...
How to call external URL and print response
Sending the data of one page to another, Sending the data of one page to another and printing response, Call external URL and print respons...
PHP: Forgot Password
<html> <body> <form action="forgotpassword.php" method="post"> E-mail: <input type="text...
Index Page with upload option and directory images displaying
<?php session_start(); if(!isset($_SESSION["username"])){ header("location:login.php"); } ?> <html...
Currency Converter Using Google Finance
Currency Converter Using Google Finance, Currency Converter Using PHP, Currency Converter code PHP /** * @abstract To covert the currency...
Login Page with Validations
<?php session_start(); if(isset($_SESSION["username"]) && $_SESSION["username"] != null){ header(...
How to make array Clean looking PHP
Making an ugly looking array to nice looking. Array is looking like this: $array = Array ( [book] => Array ( ...
PHP:Logout Page
<?php session_start(); unset($_SESSION["username"]); session_destroy(); header("location:login.php"); ?>
Labels
Array
array_shift()
Blogger
Blogger Theme
Create new pages dynamically using php
CSS
Currency Coverter
Google
HTML
HTML5
HTML5 Canvas
Jquery
PHP
rtrim
Script
Scrolltop
Sending the data of one page to another
Styles
Template
Variable Parsing
Wordpress
XML
XML to Array
Post a Comment