R
E
S
O
U
R
C
E
S
       Home      Products & Services      Contact Us      Links


WebHatchers will design & develop your site for you.
_______________________

Website Menu Heaven: menus, buttons, etc.
_______________________

Send us your questions.
_______________________

site search by freefind
_______________________

HOME
SEO, Google, Privacy
   and Anonymity
Browser Insanity
JavaScript
Popups and Tooltips
Free Website Search
HTML Form Creator
Animation
Buttons and Menus
Counters
Captchas
Image Uploading
CSS and HTML
PHP
AJAX
XPATH
Website Poll
IM and Texting
Databases—MySQL
   or Not MySQL
Personal Status Boards
Content Management
   Systems
Article Content
   Management Systems
Website Directory
   CMS Systems
Photo Gallery CMS
Forum CMS
Blog CMS
Customer Records
   Management CMS
Address Book CMS
Private Messaging CMS
Chat Room CMS
JavaScript Charts
   and Graphs




Free Personal Status Boards (PSB™)

Free Standard Free PSB

Free PSB Pro Version

Free Social PSB

Free Social PSB Plus (with Email)

Free Business PSB

Free Business PSB Plus (with Email)

PSB demo

Social PSB demo

Business PSB demo

So what's all this PSB stuff about?

Chart comparing business status boards

PSB hosting diagram

PSB Licence Agreement



Copyright © 2002 -
MCS Investments, Inc. sitemap

PSBs, social networking, social evolution, microcommunities, personal status boards
PSBs, social networking, business personal status boards
website design, ecommerce solutions
website menus, buttons, image rotators
Ez-Architect, home design software
the magic carpet and the cement wall, children's adventure book
the squirrel valley railroad, model railroad videos, model train dvds
the deep rock railroad, model railroad videos, model train dvds

HTML Form Creator—Logout of Profile and Account Management CMS

This script is called message-logout_.php

The HTML Form Creator—Logout of Profile and Account Management CMS script is one of a group of PHP scripts (it is actually the same one as HTML Form Creator—Private Message Logout) that handle both the administrative and end-user aspects of a general purpose HTML Form Creator that allows not just input boxes but multiple selection enabled select/option lists as well. In addition to the expectable editing scripts for both administrative and end-user functions, there's also a Search and Match script so that users can use the scripts to find other users with various individual or group commonalities, including proximity searches, i.e., find all the users within various distances. There are even private messaging scripts.

The purpose of this script is to provide a way in which the user can logout of the private messages scripts. We confess that it is actually the same one as the HTML Form Creator—Private Message Logout script. We have 2 links in HTML Form Creator—Profile and Account Management that run message-logout_.php. One has link text that says just Logout. The other has link text that says just Message Logout and it is with the rest of the private messaging script links..

First, we start up a session (in the checkid_.php script) and then make sure the $_SESSION['sessionid'] is set, showing there must have been a login.

When we use the checkid_.php script to ensure that the session id variable is set, we send the user to register-with-captcha_.php if it is not.

The session_unset() and session_destroy() functions are used now to trash all session variables and kiss the session goodbye.

Finally the user sees "See you soon!" and he is sent to the HTML Form Creator—Login to Profile and Account Management script.

The script below is called: message-logout_.php


<?php

include_once"checkid_.php";

// message-logout_.php

session_unset();
session_destroy();

echo '<script language="javascript">alert("See you soon!"); window.location = "login_.php"; </script>';

?>