PHP Classes

File: loadVerificaCampo1.php

Recommend this page to a friend!
  Classes of Renato Menezes Portugal   Verify User   loadVerificaCampo1.php   Download  
File: loadVerificaCampo1.php
Role: Example script
Content type: text/plain
Description: Verify field 1 script
Class: Verify User
Validate user with a record in a MySQL table
Author: By
Last change: New Version
Date: 5 years ago
Size: 345 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');

$campo1 = $_POST['username'];
$verifica1 = new verifica_campo();
echo
$verifica1->verifica($campo1);
?>