I am gonna teach you about CodeIgniter flash messages. CI’s flash sessions functionality let us to use the data for the next server request.Unlike normal…
6 CommentsTag: How to
Our step-by-step guide explains how you can create your own controller plugin in zf2. Fortunately creating a controller plugin is a very easy task. Create…
5 Commentswe sometimes need to modify user submitted data or based on user submitted data we need to do some calculation to fetch the values then,…
Leave a CommentThis post is a simple example for showing images in CGridView in Yii.Imagine that you have an image field in your table ie either a location field or a blob type field used to store the images.
1 CommentYesterday someone asked me to make a tutorial about Connecting to Database in CodeIgniter Framework. In order to make connection to database in Ci ,…
13 CommentsThis post is about registering inline and external javascript files into views, Yii provided CClientScript to manage the scripts and CSS files in Yii application.…
Leave a CommentThis Blog post is about Adding Facebook Open Graph Tags to the web app in Yii, This is really simple Task, Using This Tags We…
Leave a CommentHere is simple code snippet for adding date picker in YII. We have a Date Picker widget in Yii so I am gonna show you…
Leave a CommentIf you want to get the previous URL use the below line of code If you want to redirect to the previous URL use the…
Leave a CommentCodeigniter 2.0 adds an important security feature to prevent CSRF (Cross Site Request Forgery) attacks. Even better, the feature is automatically added to your forms(if…
13 CommentsIn the past, performance was not considered one of the top priorities when developing web applications, but nowadays web app performance is most important for…
6 CommentsI would like to show you how to disable or hide the admin bar in your WordPress application. Just put the blow line of code…
Leave a CommentFirstly, locate your php.ini file, which in my case is in the default directory of xampp\php, and edit with a notepad. Locate and uncomment (remove…
2 CommentsIn 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 Comments
How to Comment Your PHP Code?
PHP allows three different methods of formatting comments. Comments are generally known as single line and multiple line Comments.A comment in PHP code is a…