Posts from PHP

How to Parse CSV files with PHP and Insert data into MySQL database

By Ujwal Kumar Sahoo

In this article, we will learn how to read an existing CSV file and how it can be uploaded to the database. so, we will cover it in two phases: Reading an existing CSV Insert the c.... Read More

How to create a CSV file using PHP?

By Ujwal Kumar Sahoo

In this article, we are going to learn about how to create a CSV file using PHP. Before getting into the topic, first of all, let me explain, what is a CSV file? and how it plays a.... Read More

Get meta tags of a web page in PHP

By Faruque Ahamed Mollick

In this article, I am going to show you how to extract all meta tags of a web page in PHP. After we get meta tags of a web page, we are going to get the specific meta content by it.... Read More

Check if the page called from HTTP or HTTPS in PHP

By Faruque Ahamed Mollick

We often find websites which may contain HTTP or HTTPS protocol. These indicate if a website is sucure or not with SSL. Now, in this article, we are going to learn how to check if .... Read More

How to send SMS in PHP?

By Faruque Ahamed Mollick

This tutorial is going to be interesting to you. In this article, I am going to show you how to send SMS in PHP. I hope, you are also excited to see how to send SMS programmaticall.... Read More

Display HTML code on web page in PHP

By Faruque Ahamed Mollick

Many of newbies PHP developers find that when they try to show HTML code on the web page using print or echo, the browser will convert the code, run it and output the HTML instead .... Read More

Separate textarea value per line in PHP after submitting HTML form

By Faruque Ahamed Mollick

Suppose you have an HTML form and the form contains a textarea. Now you want to get each line of the textarea content and process them separately in PHP for some purpose. So you ha.... Read More

Operation on Strings using pre-defined string functions in PHP

By divyesh srivastava

In this PHP tutorial, we are going to perform different operations on strings using pre-defined string functions in PHP. Some of the pre-defined string functions in PHP:- 1.) strle.... Read More

Related Posts