I am currently running my site on PHP4 from my host, but switched it to PHP5 because of some addons (mainly Edit Orders) that require PHP5 to run.

Everything seems to work fine on my site after switching, except that I receive a blank confirmation screen. When looking at the error logs, there is only one error:


PHP Parse error: syntax error, unexpected ';' in /home/iuneedsc/public_html/includes/templates/freetemplate1/templates/tpl_checkout_confirmation_default.php on line 97

I know very little currently about editing code, but have tried removing the ';' within that block of code, and still have the error.

The code around line 97 is:

95 <?php // BEGIN Order Delivery Date ?>
96 <br />
97 <h3><?php echo; ?></h3>
98 <h4><?php echo zen_date_long($order->info['order_delivery_date']); ?></h4><br />
99 </div>
100 <?php // END Order Delivery Date ?>
A little background, which may play into this (I believe that may be what the Order Delivery Date is):

I use this site as a local convenience store-type delivery service. We are open 7 PM-5AM, and during those hours, the customer, when checking out, may choose a delivery time, but it is not required. If they do not choose a specific time, it notes their order 'Next in Queue'. When we are closed, it requires them to choose a delivery time within our operating hours, and notes that time on their order.

I have already looked at the blank page tutorial
and at a thread similar to mine here, to no avail.

Any help would be appreciated, if you need any more information, please don't hesitate to ask.

Thank you