Login   Register  
PHP Classes
elePHPant
Icontem

File: forgotpass.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of oran  >  Login Script with PDO  >  forgotpass.php  >  Download  
File: forgotpass.php
Role: Example script
Content type: text/plain
Description: forgot pass sample
Class: Login Script with PDO
Manage user accounts stored in a database with PDO
Author: By
Last change:
Date: 2009-08-28 02:22
Size: 570 bytes
 

Contents

Class file image Download
<?php
require_once 'sys.class.php';

 
session_start();
 
/*
if(isset($_SESSION['username']))
{
    
    echo "user {$_SESSION['username']} loged in  ";
}
else
{
    header('location: yourloginpage.com');
}
$SetingsChange = new ChangeSetting;
$SetingsChange->SetEmail("jjjs@sdsd.com"); // email to send new link for new pass 
$SetingsChange->SendMailForNewPass();


*/ 
// DO NOT PLACE TOGETHER 


/*
// put where to wait for  vouchers (after finish send new rand pass to user mail time limit for one hour)
$SetingsChange = new ChangeSetting;
$SetingsChange->SetNewPass(); 

*/
?>