Javascript debugger
Website design
↑
ircg_fetch_error_msg() returns the error from a failed connection.
Returns an indexed array where the error code is stored in first element, and the error text in second.
The error code is equivalent to IRC reply codes as defined by RFC 2812.
<?php
if (!ircg_join ($id, "#php")) {
$error = ircg_fetch_error_msg($id);
echo "Can't join channel #php. Error code:
$error[0] Description: $error[1]";
}
?>