So I’m a noob and just started learning how to code a few days ago.
I’m faced with the following problem:
I’m learning about escape characters, specifically: /n, /r , and /t
I made the following statement:
$heading = “Date\nName\nPayment”;
echo $heading;
and got the following output:
Date Name Payment
But, shouldn’t it look more like this:
Date
Name
Payment
I’m writing with Zend and using a MAMP. Thanks for the help.