PHP Classes

File: php/example.php

Recommend this page to a friend!
  Classes of andy honeycutt   Crypt Put Client   php/example.php   Download  
File: php/example.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Crypt Put Client
Encrypt or decrypt data using Crypt client API
Author: By
Last change:
Date: 7 years ago
Size: 207 bytes
 

Contents

Class file image Download
<?php
require_once('class.cryptput.php');

$a = new CryptPutClient();
$id = $a->put('this is my message');
print_r($id);
$data = $a->get($id);
echo
$data, "\n";
$data = $a->get($id, true);
echo
$data, "\n";