|
About Columbus State University
Accreditation
children() as $ACCT) //sweet loop reading each course
{
foreach($ACCT->children() as $DATA) //sweet loop reading each course's attributes
{
$name = $DATA->getName();
if ($name == "text_narrative")
$text_narrative = $DATA;
}
//echo course's data in predetermined format.
echo "- " . $text_narrative . "
";
}
?>
|