Home  >  Article  >  php教程  >  BBS(php & mysql)完整版(二)

BBS(php & mysql)完整版(二)

WBOY
WBOYOriginal
2016-06-13 12:40:511204browse

//此页面为look.php

include "signup/mysql.inc";
$sql="select * from ".$table." where id='$id'";
$result=mysql_query($sql)or die(mysql_error());
$row=mysql_fetch_array($result);
$number=++$row["number"];

$sql="update $table set number='$number' where id='$id'";
mysql_query($sql)or die(mysql_error());




?>



xiaoyang



include "js/menuhead.php"
?>







include "js/menu.php";
?>






  

    
        

      
  
        
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn