Saturday, July 20, 2013

Two way encryption in PHP Mcrypt

Two way encryption in PHP Mcrypt

This class provides the functionality to encrypt and decrypt a text string. The class makes use of the PHP mcrypt extension which provides the ability to create two way encryption, or decoding of text messages. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ error_reporting(E_ALL); class runCrypt...
Round up to multiple in php

Round up to multiple in php

Here is a simple function that will round a number up to a given multiple. may this help you <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function roundUpToMultiple( $number, $multiple) { return ceil( $number/$multiple ) * $multiple; } ?> Example Usage<?php /* Online PHP...

 

© 2014 4everTutorials. All rights resevered.

Back To Top