Posts for php

Deven
Deven wrote

Building the login system with PHP 7.3.3 and MySQL

PHP is a server-side scripting language. You can develop Static websites or Dynamic websites or Web applications by using PHP. The full form of PHP is Hypertext Pre-processor. But earlier, it was stood for Personal Home Pages. You can do tons of web-related things with the help of PHP but in this tutorial, we are […]

October 28, 2021 in PHP & Tutorials

How to Make Simple Photo Gallery in PHP

In this article, you will learn how to make a simple photo gallery in PHP.  Simple Photo Gallery In order to make a simple photo gallery, you can use the glob() method, GLOB_BRACE flag and basename() method. Result Note: The glob() method functions by searching for path names that match the supplied pattern. The GLOB_BRACE […]

March 6, 2021 in Code examples

How to Post JSON Data Using cURL in PHP

In this article, you will learn how to post JSON data using cURL in PHP. cURL command is usually used to transfer data to and from a server. Post JSON Data Using cURL In order to post JSON data using cURL, you can use the curl_init() method, curl_setopt() method, curl_exec() method, and curl_close() method. Note: […]

March 6, 2021 in Code examples

How to Read RSS Feed in PHP

In this article, you will learn how to read an RSS feed in PHP.  RSS stands for Really Simple Syndication and it is a web feed that allows subscribers to get updates from multiple websites on a single page. Read RSS Feed In order to read an RSS feed, you can use the file_get_contents() method […]

March 6, 2021 in Code examples