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 →

JavaScript Numbers

JavaScript has only one type of number. Numbers can be written with or without decimals. Example var x = 123e5;    // 12300000 var y = 123e-5;   // 0.00123 Code#00:

Output: …

Read More →