Skip to content

sontqq/Php-Irc-Chatbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

PHP IRC CHATBOT

Simple chatbot for IRC written in PHP

Demo:

Tauri IRCSeeker

Basic config:

IRC Server address

$server = "irc.example.com";
$port   = "6667";

Nickname of the bot

socket_write($sock, "NICK JOHN \r\n");
socket_write($sock, "USER JOHN JOHN JOHN :john\r\n");
socket_write($sock, "JOIN #CHANNEL\r\n");

Database login credentials:

$servername = "localhost";
$username   = "root";
$password   = "PASSWORD";
$dbname     = "DATABASE";

Releases

No releases published

Packages

No packages published

Languages