Nah, PHP doesn't mind HTML values... You need to put the string in quotes (PHP thinks it's parse-able code) and escape the existing quotes so they don't terminate the string:
Code:
<?php
$linksList[0] = "<a href=\"press/july 08 09.htm\" target=\"_blank\">MetaPower International, Inc. Increases Q1 2009 Revenue by 67 Percent as Compared to Q1 2008 as Stated on Pinksheets.com </a>";
?>
You'll also need to build the array in a third file, and include the third file from the two pages. This helps you not forget to update the second page's data so they stay consistent. If you like, you could also query a database in the include so the links could be entered through a web page instead of a text-editor.
Bookmarks