HTML5 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