BBnepal-Accounts/application/views/zoom/link.php

21 lines
513 B
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?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;
}*/
}
?>