PHP code example of gulik17 / eventicious

1. Go to this page and download the library: Download gulik17/eventicious library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

gulik17 / eventicious example snippets


$host = "https://admin.eventicious.com/";
$code = "Your_Authorization_Key";

$client = new \Gulik17\Eventicious\Api();
$client->setHost($host);
$client->setCode($code);


$result = $client->speakersCreate(
    1,
    "Иван",
    "Иванов",
    "Aurus",
    "Повар",
    "Москва",
    "https://vk.com/ivan_ivanov",
    "https://twitter.com/ivan_ivanov",
    "https://fb.com/ivan_ivanov",
    "[email protected]",
    "79885001133",
    "Звездный повар Ваня",
    true,
    "picture_url",
    1)

print_r($result);

php composer.phar