Facebook SDK : Download After Downloading FB SDK, place all files in relevant areas in your Codeigniter application based on the folder names. All you…
3 CommentsTag: PHP Code Snippets
In this post i am going to write about Converting Currency using Google Finance Using php Scripting Language, we Can Convert Currency using Google finance…
1 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 CommentData 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 CommentIn this post, we are going to discuss alphabet navigation, before that do you know How to generate alphabets in a loop with PHP built-in…
Leave a CommentThis Tutorial takes you through How to make a PHP Image Uploading Script, rather than uploading images to a database this tutorial shows you how…
Leave a CommentWe can pass multiple Callback function to array_map with use of anonymous function , just pass the anonymous function as arguments to array_map() function ,…
Leave a CommentIncrement and Decrement Operators are common in many Languages, Increment Operator is represented by ++ Decrement Operator is represented by — Pre-increment or Pre-decrement: if…
Leave a CommentWe can easily extract image information from the Image URL using PHP’s predefined function called getimagesize() I Use this function whenever I need to know…
Leave a CommentThe password hashing API provides an easy to use wrapper around crypt() to make it easy to create and manage passwords in a secure manner.This…
Leave a CommentBelow Script is using PHP’s mail function to send emails.
Leave a Comment$str = “9703132428,123456789,1”; // convert string to array $numbers = explode(‘,’, $str); // remove empty items from array $numbers = array_filter($numbers); // trim all the…
Leave a CommentIn PHP, the explode() function splits a string into an array based on a specified delimiter. By default, it breaks the string at each occurrence…
2 Comments