“; // Output: 15
$a -= $b; // $a = $a – $b;
echo “After -= : ” . $a . “
“; // Output: 10
$a *= $b; // $a = $a * $b;
echo “After *= : ” . $a . “
“; // Output: 50
$a /= $b; // $a = $a / $b;
echo “After /= : ” . $a . “
“; // Output: 10
?>
“; // Output: 15
$a -= $b; // $a = $a – $b;
echo “After -= : ” . $a . “
“; // Output: 10
$a *= $b; // $a = $a * $b;
echo “After *= : ” . $a . “
“; // Output: 50
$a /= $b; // $a = $a / $b;
echo “After /= : ” . $a . “
“; // Output: 10
?>
No images uploaded for this post.
No videos uploaded for this post.