本帖最后由 arday 于 2011-1-16 23:41 编辑
在網站裝了個象棋...可是一按建房...可是就空白頁. 演示裡是沒問題的(http://hsw00.com/chc/)
有大大能幫忙解決下嗎?
我看過文檔建房是鏈接去 add_d.php...如下:- <?php
- if($_POST[name] == '')
- {
- setcookie(message, 房間名稱不能為空﹗);
- header("location:index.php");
- exit;
- }
- include "./functions.php";
- include "./dbconnect.php";
- $query = mysql_query("insert into `room` (`ID`,`name`,`chess`,`time`) values (NULL,'".str_replace("<", "<", str_replace(">", ">", $_POST[name]))."','$c','".time()."')");
- $ID = mysql_insert_id();
- if($ID)
- {
- header("location:join.php?roomid=".$ID);
- }
- ?>
复制代码
|