We gonna fix the XAMPP access denied error in windows by running the application as an administrator. You can just right-click xampp-control.exe and you can…
1 CommentTag: PHP Code Snippets
In this post, we gonna write a simple PHP script to grab the given website URL screenshot. So let’s create an HTML form to collect…
3 CommentsToday I would like to show you Ajax login functionality implementation using PHP and MySQL. We gonna use the MySQL PDO driver in this tutorial.…
12 CommentsOne of the most common approaches to brand/protect images is watermarking. Here I would like to show you how to use PHP to add a…
1 CommentThis post shows the possible ways to remove specific element from array based on value of the element. Removing specific value Using array_diff() Using this…
Leave a CommentThis article shows how to read RSS feeds using php script. If you are reading this post you might know about RSS feeds and it’s…
Leave a CommentIn this post I would like to show how you can add text to an image with PHP, GD Library. In this post, we will…
2 CommentsToday I got a situation where I need automatically zero filled number. I realized it could be done much str_pad. The reason I am writing…
Leave a CommentIn this post I would like to show you getting any company logo with the use of Clearbit’s logo API and you can use those…
5 CommentsIn this post I would like to share with you code snippet, which you can use to flatten nested array into one array with string…
Leave a 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 CommentsKnowing about Design patters is very essential in software designing and development, here in this post i am gonna write about singleton pattern, basically it…
Leave a CommentThis post is about Multidimensional Array Searching , there is no builtin function in PHP to search Multidimensional Array, we can write our own function…
1 CommentToday we are going to learn more about server side validation using php codeigniter framework.Follow the below steps to do the server side validations. Server…
1 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…