Hi I just want to know why this code yields (at least for me) an incorrect result.
Well, probably i'm in fault here
$description = 'Paper: ' . ($paperType == 'bond') ? 'Bond' : 'Other';
I was guessing that if paperType equals 'Bond' then description is 'Paper: Bond' and if paperType is not equals to 'Bond' then description is 'Paper: Other'.
But when I run this code the results are description is either 'Bond' or 'Other' and left me wondering where the string 'Paper: ' went???
$description = 'Paper: ' . ($paperType == 'bond' ? 'Bond' : 'Other');
Try adding parentheses so the string is concatenated to a string in the right order.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With