PHP Classes

File: rec.php

Recommend this page to a friend!
  Classes of Jason Browatzke   URL Encoder   rec.php   Download  
File: rec.php
Role: Example script
Content type: text/plain
Description: Main class
Class: URL Encoder
Encode data to pass securely between two pages
Author: By
Last change:
Date: 20 years ago
Size: 174 bytes
 

Contents

Class file image Download
<pre><?

include('class.get_crypt.php');


$cry = new get_crypt(); // Encoded data is good for an hour

$dec = $cry->decode($_GET['data']);

print_r($dec);
?></pre>