Simple array question. I want to have a page of links. This page reads an external file to get the links, creates an array, then prints them in a certain fashion. The aim of this is so links can be added as simple text, quickly and easily into the external page without knowing any code.
For example, the external page may look like
and the php somehow manages to echo
How?
For example, the external page may look like
Code:
http://www.firstlink.com, A link somewhere
http://www.second.com, The second link
Code:
<a href="http://www.firstlink.com">A link somewhere</a><br />
<a href="http://www.second.com">The second link</a><br />
How?
