Login   Register  
PHP Classes
elePHPant
Icontem

File: example1.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-12-09 03:50
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>";

?>