";
$arr['topic']=$_REQUEST['topic'];
$arr['start_date']= date($_REQUEST['start_date'].''. $_REQUEST['start_time']);
$arr['duration']=30;
$arr['password']='test';
//$arr['type']='3'; /* 2 - scheduled...3 recurring meeting with no fixed time */
$result=createMeeting($arr);
print_r($result);
if(isset($result->id)){
echo "Join Meeting:
";
echo "Password: ".$result->password."
";
echo "Start Time: ".$result->start_time."
";
echo "Duration: ".$result->duration."
";
}else{
echo '
'; print_r($result); } } ?>