-Tạo file message.txt trên forumroot CHMOD 777
-Upload 2 file showshout.php và shout.php lên forumroot
-Chèn code sau vào forumhome




<script language="Javascript">
function xmlhttpPost(strURL) {
document.getElementById('pr').style.display="inlin e";
var xmlHttpReq = false;
var self = this;
// Mozilla/Safari
if (window.XMLHttpRequest) {
self.xmlHttpReq = new XMLHttpRequest();
}
// IE
else if (window.ActiveXObject) {
self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}
self.xmlHttpReq.open('POST', strURL, true);
self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
self.xmlHttpReq.onreadystatechange = function() {
if (self.xmlHttpReq.readyState == 4 && self.xmlHttpReq.status == 200) {
updatepage(self.xmlHttpReq.responseText);
}
}
self.xmlHttpReq.send(getquerystring());
}
function xmlhttpGet(strURL) {
document.getElementById('pr').style.display="inlin e";
var xmlHttpReq = false;
var self = this;
// Mozilla/Safari
if (window.XMLHttpRequest) {
self.xmlHttpReq = new XMLHttpRequest();
}
// IE
else if (window.ActiveXObject) {
self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}
self.xmlHttpReq.open('GET', strURL, true);
self.xmlHttpReq.onreadystatechange = function() {
if (self.xmlHttpReq.readyState == 4 && self.xmlHttpReq.status == 200) {
updatepage(self.xmlHttpReq.responseText);
}
}
self.xmlHttpReq.send(null);
}
function getquerystring() {
var form = document.forms['chatbox'];
var nick = form.nick.value;
var message = form.message.value;
qstr = 'nick=' + nick + '&message=' + message;
return qstr;
}
function updatepage(str){
//v = document.getElementById("messshow").innerHTML;
document.getElementById("messshow").innerHTML = str;
document.getElementById('pr').style.display="none" ;
}
window.onload = function()
{ xmlhttpGet("showshout.php");
setInterval("xmlhttpGet('showshout.php')", 15000);
}
</script><table width="100%" cellpadding="6" cellspacing="1" border="0"><tr><td name="chatbox">
<if condition="$show['member']">
<input type="hidden" name="nick" value="$bbuserinfo[username]"></if><input type="text" name="message" value="Nội dung" size="50"><input value="Shout" type="button" onclick='javascript:xmlhttpPost("shout.php")'><inp ut value="Refresh" type="button" onclick='javascript:xmlhttpGet("showshout.php")'>< span id="pr" style="display: none;"><img src="images/misc/progress.gif"></span></form></td></tr><tr><td dir="ltr" style="margin: 0px; padding: 0px; border: 0px; width: 100%; height: 200px; overflow: auto;"><table width="100%" id="messshow"></table></pre></td></tr></table>
Khi list chat đã quá dài,gõ




-delete
Để xóa list.

Tải Về Với Pass congtruongit.com