Returned 5 Results for "php"
2011-06-27
class CryptM {
private $input = null;
private $output = null;
private $key = null;
//initated cypher with constant - strongest encryption type
private $cypher = MCRYPT_RIJNDAEL_256;
//in...
2011-01-15
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...
2009-08-22
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...
2009-05-16
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...
2009-03-24
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(){
...