PHP - Operators
Identify the error in the following PHP code:
$count = 5;
$count +== 3;
echo $count;
$count = 5;
$count +== 3;
echo $count;
+== is invalid in PHP. The correct operator to add and assign is +=.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions