| Tutorials Main Latest Tutorials Popular Tutorials Top Rated Tutorials |
| Login to See your Favorite Tutorials |
| Description: Learn about comparison syntax, equalities, inequalities, and others. | |
| Version: 1.0 | |
| Added on: 24 February 2007 | |
| Author: unknown | |
| Difficulty Level: Very Easy | |
| Views: 346 | |
Many people are often confused of when to use these equality syntaxes. This tutorial will explain in detail how to use them.
== is equal to
| Code: |
|
if($a == $b){ echo"$a is equal to $b"; } |