Jacek Kowalski
2016-02-13 9f47c0fd4f94f45ce02c8c67ae59f5fc74f8ad9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
require_once('./class/std.php');
 
try {
    $msg = new BotMsg('<p>To jest tekst!</p>');
    $msg->a('<p>A to tekst <b>pogrubiony</b> oraz <i>pochylony</i>.</p>');
    
    $api = new BotAPIGG;
    var_dump($api->sendMessage(array('Gadu-Gadu://NUMER_GG@gadu-gadu.pl'), $msg));
}
catch(Exception $e) {
    echo $e;
}
?>