What is the difference between colon “:” and dot “.” in PHP code ?
below is code that used (:) in it
echo "Before Pention Deducations:$BeforePensionIncome<BR>";
if I use (.) Instead of (:) like the code below
echo "Before Pention Deducations.$BeforePensionIncome<BR>";
what is the difference between them?