No,
le righe di codice:
Non fanno altro che definire $banner e $link come due array.Codice PHP:
$banner = array();
$link = array();
Il popolamento dei due array, avviene sotto:
Domanda: quante posizioni banner hai, e quanti banner contemporaneamente vorresti far visualizzare?Codice PHP:
while ($row = mysql_fetch_assoc($result)) {
$banner[] .= 'images/distrib/'.$row['logo'].'.gif';
$link[] .= $row['sito'];
}