// A simple for loop that outputs our final data.
for($x=0;$x< count($story_array);$x++){
echo "\t" . $story_array[$x]->name . "
\n";
echo "\t\t
\n";
echo "\t" . $story_array[$x]->address . "
\n";
echo "\t\t
\n";
echo "\t" . $story_array[$x]->description . "\n";
}
?>