jQuery Tutorial: Create jQuery and CSS based Awesome navigation.
If you have less space on site home page and you need a simple but awesome jquery based navigation then you came in right place. I got this idea from learning jquery and stylized my navigation using CSS.
PHP Encrypt/Decrypt: Simple class to encrypt url data
Encryption is useful where critical data is being transferred in url. I have found a simple and secure encryption class with some changes to make it fit for new users. You can use it in Codeigniter websites as well. Just copy it in application/libraries directory and use it in other libraries style.
Here is the code for encryption class.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | class Encryption { var $skey = "SuPerEncKey2010"; // you can change it public function safe_b64encode($string) { $data = base64_encode($string); $data = str_replace(array('+','/','='),array('-','_',''),$data); return $data; } public function safe_b64decode($string) { $data = str_replace(array('-','_'),array('+','/'),$string); $mod4 = strlen($data) % 4; if ($mod4) { $data .= substr('====', $mod4); } return base64_decode($data); } public function encode($value){ if(!$value){return false;} $text = $value; $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); $crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->skey, $text, MCRYPT_MODE_ECB, $iv); return trim($this->safe_b64encode($crypttext)); } public function decode($value){ if(!$value){return false;} $crypttext = $this->safe_b64decode($value); $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); $decrypttext = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->skey, $crypttext, MCRYPT_MODE_ECB, $iv); return trim($decrypttext); } } |
You need to include this class any where in to make your data encrypted with simple encode() or decode() functions.
If you are using it in Codeigniter then use like this
1 2 | $this->encrypt->encode('Your data'); $this->encrypt->decode('Your encrypted data'); |
jQuery Tutorial: Create a simple jQuery Based Type n Play Game.
Learn how to create a simple dropping boxes game with jQuery, Ajax and PHP. You will type the dropping alphabetic character to get a point.
Ajax Tutorial: How to Create Ajax Search Using PHP jQuery and MYSQL
This tutorial shows how to create simple and attractive Ajax based search using PHP, jQuery, MySQL and Ajax.
Who I Am

Zeeshan Rasool
Software Engineer - PHP
Lahore - Pakistan
zeeshan(@)99points.info
Skype: zeeshan-rasool
gTalk: zishan.rasool85
Categories
- AJAX (37)
- Codeigniter (16)
- CSS (16)
- Facebook (12)
- Joomla (1)
- JQuery (54)
- Miscellaneous (4)
- Mootools (1)
- MySQL (6)
- PHP (60)
- SEO (2)
- Technology (6)
- Tutorials (17)
- Twitter (2)
- Web Design (24)
- Web Development (59)
- WordPress (2)
Tags
Comments
- ZeeShaN on Ajax Shopping Cart: Create a Stylish Shopping Cart Using JQuery and PHP
- Blogzpoint on Super Ajax Polling/Voting System using JQuery, Ajax, PHP and MySQL
- Blogzpoint on Super Ajax Polling/Voting System using JQuery, Ajax, PHP and MySQL
- Nick on Ajax Shopping Cart: Create a Stylish Shopping Cart Using JQuery and PHP
- Nick on Ajax Shopping Cart: Create a Stylish Shopping Cart Using JQuery and PHP
ZeeShaN








