Welcome to the PHP Knowledge Base and Tutorial
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> <?phpRead 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")); echoRead 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 haveRead 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 inRead More »
get the last 7 characters of a PHP string
get the last 7 characters of a PHP string Use substr() with a negative number for the 2nd argument. $newstring = substr($dynamicstring,Read More »
refresh an iframe in php page
refresh an iframe in php page <script type=”text/javascript”> var timer; function refreshIframe(){ if(timer) clearInterval(timer) timer = setTimeout(refreshIframe,5000) var iframeRead More »
Curl in html forms : Use of curl

Read More »
curl to automate HTTP jobs : Working with Curl command

Read More »
curl api using variable post/get method
HI every one there are lot of confusion about curl may be you understand easily … $url= “phone=$phone&leadid=$leadid”; //initializedRead More »