PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of bruno b b magalhaes   Input Class   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example of use
Class: Input Class
Sanitize input values passed to a script
Author: By
Last change:
Date: 19 years ago
Size: 212 bytes
 

Contents

Class file image Download
<?php

require_once('input.class.php');

$input = new input();

print_r($input->get);
print_r($input->post);
print_r($input->session);
print_r($input->cookie);
print_r($input->files);
print_r($input->server);

?>