I\'m curious to know what the syntax \" : \" mean in php I\'ve seen it a couple of times but I can\'t seem to explain it to myself. Can you also use it in a sentence....or i
It's the ternary operator:
echo ($a == 1 ? "A is 1" : "A is not 1");