All other messages are true, but as you study, you must learn without using shorthand, as it is sometimes difficult to read.
Not everyone uses the abbreviated form, and in most cases the coding standard is used. In particular, we do not use abbreviations.
Example:
<?php
$x = 15;
while($x >=5 ) {
if($x != 10){
echo $x . "<br />";
}
$x--;
}
?>
source
share