Table of Contents
Basics in PHP
Variables
$abc = 5;
echo $abc;
Mathematical Operations
$aaa=5;
$bbb=7;
$ccc=$aaa+$bbb;
echo $ccc;
If Else
if (ccc>=10){echo "greater";}
else{echo "lesser";};
Loops
for($a=1;$a<=12;$a++) {echo $a;}
Date Function
echo "Today is " . date("Y/m/d") . "
";
echo "Today is " . date("Y.m.d") . "
";
echo "Today is " . date("Y-m-d") . "
";
echo "Today is " . date("l");
Result
Today is 2016/11/28
Today is 2016.11.28
Today is 2016-11-28
Today is Monday
Redirect
header('Location: anypage.php');
header('Location: https://www.bapugraphics.com');