here is a script I setup for that....I am having problems with it though. It says call to undefined function in phpIRC.php3 on line 290 -- I think its reffering to the
irc_get_nick_list function. Any help would be great
//////////script///////////////
<?php
require("phpIRC.inc.php");
require("phpIRC.php");
$server = "210.66.115.244";
$port = 6667;
$mynick = "Sol";
$channel_name = "PacroChat";
irc_set_debug_mode(1); ///debug mode on -- Uncomment to disable
irc_change_nick($mynick);
// try to connect to server
if(!irc_connect($server, $port))
die("Connection error.<br>");
////////Gets the nick/////////////////
irc_get_nick_list($channel_name);
irc_disconnect(""); ///disconects from IRC
?>
///////////////end of script//////////////