PHP開(kāi)發(fā) 小型論壇教程之添加論壇-2
本頁(yè)面是處理從添加頁(yè)面表單提交過(guò)來(lái)的數(shù)據(jù)
代碼如下
<?php header("content-type:text/html;charset=utf8"); $forum_name=$_POST["forum_name"]; $forum_description=$_POST["forum_description"]; $Subject=$_POST['Subject']; $time=date("Y-m-d H:i:s"); $conn=mysqli_connect("localhost","root","root","mybbs"); mysqli_set_charset($conn,"utf8"); $sql="insert into forums (forum_name,forum_description,subject,last_post_time) VALUES ('$forum_name','$forum_description','$Subject','$time')"; $que=mysqli_query($conn,$sql); if($que){ echo "<script>alert('添加成功');location.href='index.php';</script>"; }else{ echo "<script>alert('添加失敗,請(qǐng)稍后再試');location.href='add_forum.php';</script>"; } ?>
現(xiàn)在我們可以添加論壇了,你不妨添加一個(gè)論壇再到首頁(yè)去看看
我們前面說(shuō)了,用戶(hù)如果在沒(méi)有登錄的情況了,我們是不允許發(fā)布添加論壇的,所以,下面我們要做登錄注冊(cè)頁(yè)面