If else statement
Hey Jason, my confirm.php page has a price column which is not displaying the case price if I order a case. I am guessing that I need an if else statement? Here's the existing code:
<?php echo WA_eCart_DisplayMoney($eCart1, $eCart1->DisplayInfo("Price")); ?>
I need a statement along the lines of:
if Quantity is equal to CaseBreak, then DisplayInfo("CasePrice")
else DisplayInfo("Price")
can you help?