Returned 5 Results for "php"

CryptM - Mcrypt encryption/cypher manager for PHP


2011-06-27 Digg! icurtain Delcious icurtain
CryptM Mcrypt encryption cypher manager for PHP
class CryptM {     private $input = null;     private $output = null;     private $key = null;     //initated cypher with constant - strongest encryption type     private $cypher = MCRYPT_RIJNDAEL_256;     //in...

PHP File Upload Manager


2011-01-15 Digg! icurtain Delcious icurtain
Thought I would consolidate file upload functions for PHP into one nice easy class - compatible with dbphp - makes my life soooooo easy ;)  class FileUpload {       /*Documentation     FileUpload Class 0.1 - 2010-01-15 by icurtain.co.uk     Imeplentation is as follows          $file = new F...

PHP Hash Maker - MD5, SHA1 etc


2009-08-22 Digg! icurtain Delcious icurtain
PHP Hash Maker MD5 SHA1 etc
The Hash maker is a quick and easy way to either make hashes and use them directly or try to work out what your lost password was I find it quite useful to be able to generate hashes for passwords directly for the purposes of resetting passwords directly in a database...

dbPHP - Object Relational Mapping for PHP


2009-05-16 Digg! icurtain Delcious icurtain
dbPHP Object Relational Mapping for PHP
dbPHP is a lightweight framework allowing object relational mapping between (at present) mySQL and PHP.   dbphp project home dbphp twitter Google Code Home SourceForge Code Home dbphp manual   Object relational mapping is the process of creating a structural relationship...

PHP Colour Changing Background Algorithm


2009-03-24 Digg! icurtain Delcious icurtain
This returns the average colour of an image in PHP using GD libraries and then, assuming you ahve no sense of design, you could use this to set the background colour of a page. This code can be slotted directly into the ImageHandler class also on this site    public function getAverageColour(){   ...