sylvia Posted July 30, 2003 Posted July 30, 2003 May I please ask for help in figuring out a parse error. The ReadMe file for Add a Printable Catalog specifies the following: To catalog/includes/boxes/ information.php add: '<a href="' . tep_href_link(FILENAME_PRINT_CATALOG, '', 'NONSSL') . '" target="_BLANK">' . BOX_INFORMATION_PRINT_CATALOG . '</a>'); Be sure the line above the new line has a break, a single quote, a space, and a period at the end. I.E. ..... NTACT . '</a><br>' . [End of ReadMe file] I attempted to do this below. but am getting this diagnostic : Parse error: parse error in /home/www/tackroominc.com/catalog/includes/boxes/information.php on line 30 Here is a the code around the line I added. If someone can tell me what error I've made, I would very much appreciate your help. Thank you in advance. -sylvia $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(FILENAME_SHIPPING, '', 'NONSSL') . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY, '', 'NONSSL') . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS, '', 'NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US, '', 'NONSSL') . '">' . BOX_INFORMATION_CONTACT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRINT_CATALOG, '', 'NONSSL') . '" target="_BLANK">' . BOX_INFORMATION_PRINT_CATALOG . '</a>'); ); Quote
sylvia Posted July 30, 2003 Author Posted July 30, 2003 Matt -- Thank you very much for your time! I knew it was something goofy, but still enough to shut me down. I appreciate! -s. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.