In my recent project there are lot of HTML comments for each block. I don’t want to show the comments when viewing the source code…
1 CommentCategory: PHP / MySQL
In this tutorial, I will show you integrating Captcha in your CodeIgniter application. We gonna use CI’s builtin captcha helper and contains functions that assist…
6 CommentsIn this tutorial, We gonna use CodeIgniter built-in pagination library to show the paginated list of items on your web page. Here are the steps…
Leave a CommentI always use this CodeIgniter Helper for all of my CI projects to Highlight Current or active link in the menu bar. How it works…
4 CommentsThis Post is About Creating Links in CodeIgniter, To Create Links in CodeIgniter you have to load CI URL Helper, How to load CI’s URL…
9 CommentsRSS (Real Simple Syndication) feeds can be found everywhere on the internet. News and information are delivered using it and discussions forums, blogging sites enable…
3 CommentsCodeIgniter has lot of Useful helper functions and libraries , Classes. Here we are going to Develop a Multilingual Site Using CodeIniger Language Class and…
3 CommentsThe HTTP_X_REQUESTED_WITH header is sent by all recent browsers that support AJAX requests. if (isset($_SERVER[‘HTTP_X_REQUESTED_WITH’]) && !empty($_SERVER[‘HTTP_X_REQUESTED_WITH’]) && strtolower($_SERVER[‘HTTP_X_REQUESTED_WITH’]) == ‘xmlhttprequest’ ) { // something…
Leave a CommentOne of my new Project, I need to Display Latest Updates of last 3 days. With MySQL’s date_add we can achieve result, see the below…
Leave a Commenthttp://www.youtube.com/watch?v=QOldVDVYnAE
Leave a CommentThis is very simple and common task, But many PHP newbies(beginners) don’t know about it. To see the Structure of PHP array , you have…
2 CommentsData retrieving is vital in Web Applications, so in this post i am going to write about Data Retrieving function in PHP From MySQL Database.…
Leave a CommentI often Use Image Data URIs for large-scale applications depending on client requirement(not supported in IE7 and below). Data URI: The data URI scheme is…
Leave a CommentWe can set or change front page or home page of YII Driven web Application with simple Changes, we can do this with changing a…
1 Comment