I am trying to echo text from an array but I can't seem to get the quotes right. Could some please look at this code and tell me what I am doing wrong?
Code:
<?php
if (@include(getenv('DOCUMENT_ROOT').'/openads/phpadsnew.inc.php')) {
if (!isset($phpAds_context)) $phpAds_context = array();
$phpAds_raw = view_raw ('zone:6', 0, '', '', '0', $phpAds_context);
echo $phpAds_raw['html'];
}
echo "$phpAds_raw['html']";
?>