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...
How to make array Clean looking PHP
Making an ugly looking array to nice looking. Array is looking like this: $array = Array ( [book] => Array ( ...
Index Page with upload option and directory images displaying
<?php session_start(); if(!isset($_SESSION["username"])){ header("location:login.php"); } ?> <html...
How to remove stylesheet dynamically and append new stylesheet dynamically
If you want to remove loaded style that means at the time page loading we added stylesheet. But after loading that when click on some thin...
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:Logout Page
<?php session_start(); unset($_SESSION["username"]); session_destroy(); header("location:login.php"); ?>
Simple Registration Page values inserting into database PHP
<html> <body> <form method="post" action="form.php"> <table width="100%" border="...
Scrolling top blogger
Looking for scrolling top option for blogger it is simple Before proceeding to steps go to your template click on backup/Restore option t...
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...
Creating mysql Database
<?php $connect = mysql_connect("localhost", "root", "") or die("Could not establish connection"...
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