Matt,
It's fairly simple to make an IRC connection and send data. What you need I think is the RCF 1459. Go to Yahoo and type 'RFC 1459' and get the IRC RFC. Here's a quick example of PHP's connection to IRC.
$sock = fopen("irc.server.com","port");
fputs($sock,"USER ident username server :realname\n");
fputs($sock,"NICK nickname\n");
fputs($sock,"JOIN #channel\n");
while (!feof($sock)) {
echo $fgets($sock,1024);
}
fclose($sock);
-Sean aka Feti Chico
@#php EfNet