...
1.鏈接資料庫通用方法:conn.php <?php //第一步:鏈接資料庫 $conn=@mysql_connect("localhost:3306","root","root")or die ("mysql鏈接失敗"); //第二步: 選擇指定的資料庫,設置字元集 @mysql_select_db("php_blog",$conn) or die ("db鏈接失敗".mysql_error()); mysql_query('SET NAMES UTF8')or die ("字元集設置錯誤"); ?> 2.查詢判斷 select.php <?php include("conn.php");//引入鏈接資料庫<pre name="code" class="html"><?php include("conn.php");//引入鏈接資料庫 if(!empty ($_GET['id'])){ $sql="select * from news where id='".$_GET['id']."'"; $query=mysql_query($sql); $rs=mysql_fetch_array($query); //判斷$rs有值說明資料庫存在,否則資料庫不存在; } ?> <form action="add.php" method="post"> 標題: <input type="text" name="title"><br> 內容: <textarea rows="5" cols="50" name="con"></textarea><br> <input type="submit" name="sub" value="發表"> </form>