Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Oliver Leuyim Angel  >  PHP Unique ID  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example for use this class
Class: PHP Unique ID
Generate a unique identifier of the current access
Author: By
Last change:
Date: 2013-10-04 10:36
Size: 195 bytes
 

Contents

Class file image Download
<?php 

require('class.uniqid.php');

$ret = new Uniq_Sec_ID();
$uniq_ID $ret->UniID();
echo 
"unique code: ".$uniq_ID;

//if you want to get the real ip

echo $ret->getRealIP();

?>