This post is about Quick and Easy Drop-down HTML Select box element generation with custom CI helper function(CI helper file merely contains your defined functions)…
33 CommentsCategory: PHP / MySQL
This is a quickie simple post on how to create and parse the JSON(Java Script object notion) data format of using array of PHP. It’s…
Leave a CommentI 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 CommentsToday i want to show you how to use codeigniter directory helper for getting list of files as array from given directory and its sub…
1 CommentIn this tutorial I will show you ,How to insert multiple rows productively into a table with single SQL Query using PHP’s Iterators.
9 CommentsOur 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 CommentsYou can’t delete non-empty directories with one of PHPs own functions so in order to delete Directories Recursively just fallow the below shown logic,shown PHP function scans a given directory and deletes all files and sub directories it finds.
Leave a CommentGetting the thumbnail image for a dailymotion video is very easy. Just use the following link, replacing the with the id of the video.
1 CommentGetting the thumbnail image for a Vimeo video is very easy. Just use the following link, replacing the with the id of the video.
1 CommentGetting the thumbnail image for a YouTube video is very easy. Just use the following link, replacing the
You can delete files from the server with PHP’s file system function unlink() which will delete/remove the files. Using unlink you can removes all types…
Leave a Comment
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…