PHP Data Types

October 15th, 2010

Data Types

You can store the following simple types of data in PHP variables:

Integer: A whole number (no fractions), such …
Read More…

Comments and Special Characters

October 14th, 2010

Comments:

The comments section is useful in your program. The PHP comment syntax always begins with a special character sequence …
Read More…

Echo Command

October 14th, 2010

The PHP command echo is a means of outputting text to the web browser. To output a string, we …
Read More…

Putting Text into Variables

October 14th, 2010

Review: Variables are used for storing values, like text strings, numbers or arrays.

Suppose you want to know something …
Read More…

Putting Numbers into Variables

October 14th, 2010

Review: Variables are used for storing values, like text strings, numbers or arrays.

For example, we want to know …
Read More…