PHP Variables

In PHP, a variable is declared using a $ sign followed by the variable name. Here, some important points to know about variables: As PHP is a …

Read More →

PHP Print

The PHP print Statement The print statement can be used with or without parentheses: print or print(). Display Text The following example shows how to output text with the print command (notice …

Read More →

PHP Echo

PHP echo is a language construct, not a function. Therefore, you don’t need to use parenthesis with it. But if you want to use more …

Read More →