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 Kai Ming Choi  >  Expire Class  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: Expire Class
Generate an encrypted code that expires after time
Author: By
Last change:
Date: 2010-07-07 21:06
Size: 347 bytes
 

Contents

Class file image Download
<?
//Expire Class Example
//This example make the link last for 10s
require "expire.class.php";

$expire = new Expire(102"examplecode"0);    //set the info, expire time = 10s

$link "example_image.php?expire=".$expire->getCurrentCode();    //make a url

echo "<img src='".$link."' /><br />";

echo 
"<a href='$link'>".$link."</a>";
?>