Hi,
I have the following simple test script:
<?php
$links = array('URL'=>'www.google.com');
print("$links['URL']"); // compilation error
print("$links[URL]");
print($links['URL']);
print($links[URL]); // execution warning
?>
But two lines are giving me problems. Can any one help to explain?
Thanks.
--Mark