Когда пользователи научатся грамотно составлять вопросы, как, например, здесь, будут им адекватные, развернутые ответы соответственно. А пока не о чем говорить
Возможно всё, стоить только захотеть Попробуй отсниффить запрос, как сказал Chaak. Если всё получится, то можешь попробовать запостить сообщение этим скриптом: PHP: <?php $ch = curl_init('http://flashchat.xx/chat.php'); // Куда заходим curl_setopt($ch, CURLOPT_POST, 1); curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Sending a message to the Flash Chat using PHP) "); // User-agent $headers = array ( 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*;q=0.8', 'Accept-Language: ru,en-us;q=0.7,en;q=0.3', 'Accept-Encoding: deflate', 'Accept-Charset: windows-1251,utf-8;q=0.7,*;q=0.7' ); curl_setopt($ch, CURLOPT_HTTPHEADER,$headers); curl_setopt($ch, CURLOPT_REFERER, "http://flashchat.xx"); // Реферер curl_setopt($ch, CURLOPT_POSTFIELDS, 'nick=php&message=test'); // Post данные curl_setopt($ch, CURLOPT_COOKIEJAR, "my_cookies.txt"); curl_setopt($ch, CURLOPT_COOKIEFILE, "my_cookies.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($ch); curl_close($ch); ?>