Welcome to the PHP Knowledge Base and Tutorial
explode() Function in PHP
explode() Function in PHP explode() is a built in function in PHP used to split a string in different strings. […]Read More »
Install PHP 7.4 on CentOS 8
Install PHP 7.4 on CentOS 8 PHP, a recursive acronym for PHP Hypertext Preprocessor, is a popular server-side scripting language used […]Read More »
PHP Frame Work

Read More »
Install PHP

Read More »
PHP("Introduction")
Introduction PHP started out as a small open source project that evolved as more and more people found out how […]Read More »
Laravel "Framework" Basic Task List Tutorial

Read More »
Laravel "Framework" Installation

Read More »
PHP program to Happy Holi
PHP program to Happy Holi Here is the simple php program to print Happy Holi. <!DOCTYPE html> <html> <body> <?php […]Read More »
php include pages or files

Read More »
how to get date of yesterday using php
how to get date of yesterday using php <?php $test=date('d.m.Y',strtotime("-1 days")); echo $test; ?> or <?php $test=date('d-m-Y',strtotime("-1 days")); echo […]Read More »
PHP readfile() Function - file handling
PHP readfile() Function – file handling The readfile() function reads a file and writes it to the output buffer. Assume we have […]Read More »
PHP print Statement

Read More »
PHP substr() function

Read More »
How to identify server IP address in PHP

Read More »
Saving a curl response into a php variable
Saving a curl response into a php variable Here is example to save a curl resonse into a variable in […]Read More »