course__getList
Parameters:
p1: partition username
Return Type:
String
Description:
Returns each course name from specified account as an XML node.
Example (using Code Kit):// assumes partition username "anthony" exists
$data = APICommand( "course__getList", "anthony" );$xml = simplexml_load_string( $data );
foreach ( $xml->children() as $result ) { echo "{$result}
"; }