PHP Classes

File: uploady/logic/activationLogic.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/logic/activationLogic.php   Download  
File: uploady/logic/activationLogic.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: Update of uploady/logic/activationLogic.php
Date: 5 months ago
Size: 316 bytes
 

Contents

Class file image Download
<?php

$token
= $utils->sanitize($_GET['token']);

if (
$token) {
    if (
$user->activate($token)) {
       
$msg = $lang["general"]["account_activation_success"];
    } else {
       
$msg = $lang["general"]["account_activation_failed"];
    }
}

$page = 'activation';
$title = $lang["general"]['activation_title'];