Featured Post

What is the purpose of the php.ini file?

  The PHP configuration file,   php.ini , is the final and most immediate way to affect PHP's functionality. The php.ini file is read ea...

What are variables in PHP?

 Variables store data and always start with $.

$name = "John";

$age = 25;

Difference between echo and print?

 

echoprint
Can output multiple strings    Outputs one string only
Faster    Slightly slower
No return value    Returns 1

Popular Posts