<?php
$hello = "ok";
$hello+= "hello again";
echo $hello;
?>
Hello. I'd like to understand why this code prints 0 at the end? Using the same method in javascript was working! Also, how do I make it that it change? I'd like the output to change according to any condition I make. Thanks