Nevermind,

I did not notice/add the ); at the end of this line

(FILENAME_TESTPAGE4, '', 'NONSSL') . '">' . BOX_TEST_LINK4 . '</a>'



I am trying to follow the instruction to Adding New Boxes, Links and Pages in this instruction page

http://www.oscdox.com/modules.php?op...%20New%20Boxes

I am getting this error after making changes according to the final step of the instruction. Everything was going weel before this step.

Parse error: parse error, unexpected T_NEW, expecting ')' in /home/xxxxxxxx/public_html/catalog/includes/boxes/test.php on line 31



My code in the test.php





<?php
/*
$Id: information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright (c) 2003 osCommerce

Released under the GNU General Public License
*/
?>
<!-- information //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left',
'text' => BOX_HEADING_TEST);
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left',
'text' => '<a href="' . tep_href_link
(FILENAME_TESTPAGE1, '', 'NONSSL') . '">' . BOX_TEST_LINK1 . '</a><br>' .
'<a href="' . tep_href_link
(FILENAME_TESTPAGE2, '', 'NONSSL') . '">' . BOX_TEST_LINK2 . '</a><br>' .
'<a href="' . tep_href_link
(FILENAME_TESTPAGE3, '', 'NONSSL') . '">' . BOX_TEST_LINK3 . '</a><br>' .
'<a href="' . tep_href_link
(FILENAME_TESTPAGE4, '', 'NONSSL') . '">' . BOX_TEST_LINK4 . '</a>'
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- information_eof //-->