#!/usr/bin/env php meetings->meeting as $meeting) { $participantCount=$meeting->participantCount; $cM=$cM+1; $cP=$cP+$participantCount; if ($participantCount <>'0') { foreach ($meeting->attendees->attendee as $attendee) { if($attendee->hasVideo == 'true') {$cV=$cV+1;}; if($attendee->hasJoinedVoice == 'true') {$cA=$cA+1;}; } } } if ($cM>0) { $useText="benutzt"; } else { $useText="unbenutzt"; } echo ""; echo ""; echo ""; echo "Meetings"; echo "" . $cM . ""; echo ""; echo ""; echo "Teilnehmer"; echo "" . $cP . ""; echo ""; echo ""; echo "Audio"; echo "" . $cA . ""; echo ""; echo ""; echo "Video"; echo "" . $cV . ""; echo ""; echo "" . $useText . ""; echo ""; ?>