This will return all 5 descriptions in one shot..
Code:
$limit = 5;
for($x=0;$x<$limit;$x++) {
...random code...
$description .= $feed[$x]['desc'] . '<br />';
...random code...
}
return $description;
--------------- Added [DATE]1311268112[/DATE] at [TIME]1311268112[/TIME] ---------------
Or $description can be returned as an array..
Code:
$limit = 5;
for($x=0;$x<$limit;$x++) {
...random code...
$description[] = $feed[$x]['desc'] .'<br />';
...random code...
}
return $description;