PHP

variables and output statements in PHP

We have 2  functions for output in PHP those are echo() and Print () actually output statements used to send output to the client (browser) differences between echo() and print() are echo() is faster than print() in execution print() is return an integer value where echo() dosent return a value

Read More...