Remove null values from PHP array
When we need to filter any array then we use array_filter. array_filter — Filters elements of an array using a callback function. I have an array with some null values so i want to remove null values...
View ArticlePHP Good or Bad – An Overview
I was thinking since quiet of time, why i found so much php haters over internet community. I also worked on php and some other php frameworks like drupal, WordPress etc. I personally found php a...
View ArticleWeb Designers and Web Developers – An Overview
Everyone uses internet today, surf different websites for various purposes. People uses internet usually came across a term web design . Sometimes i have seen many people usually confuse between web...
View ArticleHow to write PHP code in HTML?
For a experience php web developer it will be a very easy thing. But for a new developer , who recently started learning php programming it will be a questionable thing. So today we will embed php...
View ArticleMysql subquery with IN and NOT IN operators
Mysql subquery is a nested query that is being used inside another queries like select, update, delete etc. A mysql subquery also called a inner query and the main query that contain this subquery is...
View ArticleImport data from Excel to mysql database using PHPExcel
Earlier i wrote a post – how to import excel sheet data to mysql database using php. That was by using PHPExcelreader API. This time , I am writing this tutorial again now using PHPExcel library. I...
View ArticleHow to enable error reporting in PHP?
PHP is widely used web programming language. Sometimes when we run any php script and it’s shows nothing , a blank white screen. It means there is some problem in code. To know the error occurring, we...
View ArticleTop 10 PHP Frameworks to use in 2015
PHP is the most widely used language for web development. More than 80% websites are being developed on PHP. PHP is easy to use, interactive and open source. PHP having inbuilt database integration...
View ArticleBest 5 Content Management System(CMS) to use in 2015
Content Management System (CMS) is a set of prebuilt internet tools to create, upload and manage content online. A good CMS gives option to developers write custom code, templates and modules etc....
View ArticleTop WordPress E commerce Plugins to use in 2015
We talked about a lot WordPress and its power in web. WordPress is the most used CMS in the world. Multi category websites are running on WordPress like Blogs, Corporate, Business, Personal, Social...
View ArticleHTML5 forms input types
In previous posts, we came across the introduction of html5 and semantics elements in html5. Now, we will look at html5 new forms of input elements. HTML5 introduces 13 new input types – search email...
View ArticleHow to alphabetical sort mysql query field variable in PHP?
Today I was working on a code and find some difficulty while doing it. So I thought, I should share this with all of you. Actually, I want to alphabetical sort MySQL query filed value variable. Let’s...
View ArticleHow to submit a form in PHP?
While doing programming, forms are very common to implement on any website. When you sign up or create an account on any job site then you need to fill the form. Form data can be sent on email id or...
View ArticleHow to send an attachment with email in PHP?
Sending an email is a very common activity in any web application. PHP has mail() function to send email form code. Sometimes we need to send attachment file with email. Attachment can be any image,...
View ArticleHow to generate a CSV file from form data and send us an email attachment?
I am coming up with the interesting post today. In our daily programming, we do something that we want to share with everyone so we can make programming simpler by helping each other. Recently, I...
View ArticleHow to upgrade PHP Version 5.x to 7.x?
I am assuming most of PHP developers will be using XAMPP for their local web development. If you are still using an old version of PHP and want to upgrade to latest version 7.x then you are in the...
View ArticleFix: Invalid argument supplied for foreach() PHP Warning
Introduction PHP is the most popular scripting programming language used for web development. WordPress world no 1 CMS also developed on PHP and more than 75% of web powered by PHP. While working on...
View ArticleHow to connect MySQL database with PHP
Today I am going to discuss how we can connect MySQL database with PHP application. Introduction PHP MySQL combination is very popular and widely used. PHP based CMS like WordPress, Joomla, Drupal,...
View ArticleHow to sort table columns by value in PHP MySQL?
Introduction In this tutorial, we will learn how to sort HTML table data when we click on table column headers to toggle data by field name using ORDER BY. HTML table will contain data from a MySQL...
View ArticlePHP Form Validation for Beginners
We already discussed HTML5 forms of input types. The basic goal of this post is to create a form and validate from inputs with PHP. Introduction We will create a form using bootstrap and will validate...
View Article