Buongiorno a tutti,
Questo seguente codice PHP mi da' questo errore "Therequested URL was not found on this server" che dipende dal fatto che invece di inserire nel "Iframe src" = './inpaghome/catmonol.php'devo inserire la variabile array "$newsInHomeSx" o "$newsInHomeDx" (che ha esattamentelo stesso valore). Il risulato della variabile stringa e' pero' diverso tanto e' vero che non vienetrovato il file php.
Sicuramente sbaglio qualcosa ma non riesco a capire.
Ringrazio per l'aiuto. 

Codice PHP:
if ($titpag== 'Home') {
$newsInHomeSx = array('./inpaghome/catmonol.php');
$newsInHomeDx = array('./inpaghome/supcollet.php');
$quantenewsSx = count($newsInHomeSx);
echo "
<DIV STYLE='position:absolute; margin-left:12.5cm; margin-top:9.7cm; line-height: 5px;'>
<iframe src='./inpaghome/supcollet.php' width='450' scrolling='no' frameborder='0'>
</iframe>
</DIV>
<iframe src='./inpaghome/catmonol.php' width='450' scrolling='no' frameborder='0'>
</iframe>
for($i=0;$i<$quantenewsSx;$i++){
<DIV STYLE='position:absolute; margin-left:4.5cm;'>
<p><img src='images/filetto_separatore.jpg' width='650' height='1' alt='separatore'/></p>
</DIV>
<DIV STYLE='position:absolute; margin-left:12.5cm; line-height: 5px;'>
<iframe src=$newsInHomeDx[$i]; width='450' scrolling='no' frameborder='0'>
</iframe>
</DIV>
<iframe src=$newsInHomeSx[$i]; width='450' scrolling='no' frameborder='0'>
</iframe>
}
}
";