21 lines
513 B
PHP
21 lines
513 B
PHP
<?php
|
|
include('config.php');
|
|
include('api.php');
|
|
print_r($details);
|
|
if(isset($_REQUEST['start']))
|
|
{
|
|
echo "<pre>";
|
|
|
|
$arr['topic']=$_REQUEST['subject'];
|
|
$arr['start_date']= date('Y-m-d'. $_REQUEST['start']);
|
|
$arr['duration']=$_REQUEST['duration'];
|
|
$arr['password']='test';
|
|
$arr['type']='3'; /* 2 - scheduled...3 recurring meeting with no fixed time */
|
|
echo $result=createMeeting($arr);
|
|
// print_r($result);
|
|
/* if(isset($result->id)){
|
|
$result->join_url;
|
|
}*/
|
|
}
|
|
?>
|