PHP Classes

File: loadVerificaCampo2.php

Recommend this page to a friend!
  Classes of Renato Menezes Portugal   Verify User   loadVerificaCampo2.php   Download  
File: loadVerificaCampo2.php
Role: Example script
Content type: text/plain
Description: Verify field 2 script
Class: Verify User
Validate user with a record in a MySQL table
Author: By
Last change: New Version
Date: 6 years ago
Size: 346 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Renato Menezes Portugal <renato@tecnocrata.org>
 * @copyright (c) Only Personal Use
 * @version 1.0, 06SET18
 * @license Brasil Federal Law, São Paulo, SP
 */

//Chama a classe
require ('./verifica.php');

$campo2 = $_POST['username2'];
$verifica2 = new verifica_campo();
echo
$verifica2->verifica($campo2);
?>