67ludwig Posted December 28, 2005 Share Posted December 28, 2005 I don't know much about PHP script. Can anyone help? I get the following message when clicking to "OSCommerce/admin/orders.php": Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/www/jls-katzmeow.com/OSCommerce/admin/orders.php on line 371 Here's how line 371 reads: echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href='' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit') . ''">' . "n"; I would appreciate any help you can lend to this PHP novice Link to comment Share on other sites More sharing options...
Nacer Posted December 28, 2005 Share Posted December 28, 2005 Replace the above with: echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit') . '\'">' . "\n"; Regards, Nacer. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.