PHP Classes

File: example1.php

Recommend this page to a friend!
  Classes of Patxi Echarte   HTTP Request   example1.php   Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: Example 1
Class: HTTP Request
Gather information about the current HTTP request
Author: By
Last change:
Date: 18 years ago
Size: 190 bytes
 

Contents

Class file image Download
<?php

/**
* HttpRequest example 1
*
*/


include_once('HttpRequest.class.php');

$httpRequest =& new HttpRequest();

echo
"<pre>";
print_r($httpRequest);
echo
"</pre>";

?>