I have the following code snippet
if ($summary == "CFD funding Interest Paid" ||
$summary == "Commissions" ||
$summary == "Closing trades") {
print $summary.",".$date.",".$reference.",".$description.",".$amount."<br>";
}
else {
print $summary."*<br>";
}
It displays the following
Commissions *
Commissions *
Closing trades *
Commissions *
Closing trades *
Why don't the lines match?
source
share