PHP
  Home arrow PHP arrow Page 3 - A Login System for a PHP Email Application
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PHP

A Login System for a PHP Email Application
By: Leidago
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 22
    2006-11-01


    Table of Contents:
  • A Login System for a PHP Email Application
  • The code: form verification
  • The code: logging out and registration
  • The code: form handling and user profile

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    A Login System for a PHP Email Application - The code: logging out and registration
    ( Page 3 of 4 )

    Logout page. This page basically logs you out of the system and destroys any sessions that were created when you logged in. The application then returns the user to the login page.

    Logout.php

    <?
    ob_start();
    session_start();
    session_unset();
    session_destroy();
    header("location:login.php");
    ?>

    register.php. This code registers a new user. The fields provided in the form match those declared in the users table. See the previous article.

    form

    <table width="100%" border="0" cellspacing="7">
      <tr bgcolor="#FFFFFF">
        <td valign="top">&nbsp;<img src="images/registration.png"
    width="661" height="130" /></td>
      </tr>
      <tr>
        <td width="89%" valign="top" colspan="2"><form
    action="register.php" method="post" >
                  <table width="100%" border="0" cellspacing="1"
    class="block">
            <tr class="table">
              <td colspan="2">&nbsp;</td>
              </tr>
            <tr>
              <td colspan="2">*<strong>ALL</strong> fields are
    required. </td>
            </tr>
            <tr>
              <td colspan="2">&nbsp;</td>
            </tr>
            <tr class="td">
              <td colspan="2"><strong>User Info: </strong></td>
            </tr>
            <tr>
              <? if($err){?>
                            <td width="87%" valign="bottom"
    colspan="2"><? 
                            echo "The following errors where
    detected:<br>";
                            echo "<font color = "#ff000
    ">$errmsg</font><br>"; ?>  </td>
          <? }?>
                     </tr>
            <tr>
              <td width="29%">Login name </td>
              <td width="71%"><input name="uname" type="text"
    id="uname" size="60" /></td>
            </tr>
            <tr>
              <td>Login Password </td>
              <td><input name="upass" type="text" id="upass"
    size="60" /></td>
            </tr>
                            <tr>
              <td>Email Address </td>
              <td><input name="email" type="text" id="email"
    size="60" /></td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
            <tr class="td">
              <td colspan="2"><strong>Logon Info: </strong></td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
            <tr>
              <td>RemoteUsername </td>
              <td><input name="remuser" type="text" id="remuser"
    size="60" /></td>
            </tr>
            <tr>
              <td>Remote Password </td>
              <td><input name="rempass" type="text" id="rempass"
    size="60" /></td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
            <tr class="td">
              <td colspan="2"><strong>Server Info: </strong> </td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
            <tr>
              <td>Incoming Mail Server: </td>
              <td><input name="pop3" type="text" id="pop3"
    size="60" /></td>
            </tr>
            <tr>
              <td>Outgoing Mail Server: </td>
              <td><input name="smtp" type="text" id="smtp"
    size="60" /></td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td><input type="submit" name="submit" value="Register
    me now!" /></td>
            </tr>
          </table>
                  </form>    </td>
      </tr>
      <tr>
        <td colspan="2"><div align="center">Copyright 2005 </div></td>
      </tr>
    </table>



     
     
    >>> More PHP Articles          >>> More By Leidago
     

       

    PHP ARTICLES

    - Implementing Factory Methods in PHP 5
    - Merging a File Split for FTP Upload using PHP
    - Getting Data from Yahoo Site Explorer Inboun...
    - Method Chaining: Adding More Selecting Metho...
    - How to Split a File During an FTP Upload Usi...
    - Expanding a Custom CodeIgniter Library with ...
    - Using the Yahoo Site Explorer Inbound Links ...
    - Building a CodeIgniter Custom Library with M...
    - Building an E-mini Trading System Using PHP ...
    - Completing the MySQL Class with Method Chain...
    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...
    - Mastering WHILE Loops for PHP and MySQL





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek