<?php include('config.php'); $last_msg_id=$_GET['last_msg_id']; $action=$_GET['action']; if($action <> "get") { ?> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function() { function last_msg_funtion() { var ID=$(".message_box:last").attr("id"); $('div#last_msg_loader').html('<img src="bigLoader.gif">'); $.post("load_data.php?action=get&last_msg_id="+ID, function(data){ if (data != "") { $(".message_box:last").after(data); } $('div#last_msg_loader').empty(); }); }; $(window).scroll(function(){ if ($(window).scrollTop() == $(document).height() - $(window).height()){ last_msg_funtion(); } }); }); </script> </head> <body> <?php include('load_first.php'); //Include load_first.php ?> <div id="last_msg_loader"></div> </body> </html> <?php } else { include('load_second.php'); //include load_second.php } ?>
<?php $sql=mysql_query("SELECT * FROM messages ORDER BY mes_id DESC LIMIT 20"); while($row=mysql_fetch_array($sql)) { $msgID= $row['mes_id']; $msg= $row['msg']; ?> <div id="<?php echo $msgID; ?>" class="message_box" > <?php echo $msg; ?> </div> <?php } ?>
<?php $last_msg_id=$_GET['last_msg_id']; $sql=mysql_query("SELECT * FROM messages WHERE mes_id < '$last_msg_id' ORDER BY mes_id DESC LIMIT 5"); $last_msg_id=""; while($row=mysql_fetch_array($sql)) { $msgID= $row['mes_id']; $msg= $row['msg']; ?> <div id="<?php echo $msgID; ?>" class="message_box" > <?php echo $msg; ?> </div> <?php } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง