Hello again,
If i want to connect it with gtalk and msn what i should do?
Printable View
Hello again,
If i want to connect it with gtalk and msn what i should do?
You'll have to look to see if they have an API. Be aware it's very complex.
Done. Now I need if the user type quote it will randomly echo a quote from a text file that i have with quotes numbered Quote1 , Quote2 etc. It can be done?
quotes.txt:PHP Code:<?php
function quote($file){
$split = explode("\n", $file);
return $split[rand(0, count($split)-1)];
}
echo quote(file_get_contents("quotes.txt"));
?>
Code:Quote 1
Quote 2
Quote 3
Quote 4