BBnepal-Accounts/application/views/zoom/link.php
Sampanna Rimal 9cd05ef3cb commitall
2024-07-10 18:28:19 +05:45

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;
}*/
}
?>