Hello im using ad rotator dor my website to show different ads per refresh homeeber some ad codes dont work and give php errors. How can i fix that? Getting errors on key,format,height,width,params and document write section. Error is T_STRING unexpected
<?php
$advert = array();
$advert[] = '<script type="text/javascript">
atOptions = {
'key' : '123456789',
'format' : 'iframe',
'height' : 90,
'width' : 728,
'params' : {}
};
document.write('<scr' + 'ipt type="text/javascript" src="http' + (location.protocol === 'https:' ? 's' : '') + '://www.website/invoke.js"></scr' + 'ipt>');
</script>';
shuffle($advert);
echo $advert[0];
?>```