主题:  问题是为何不会继续.

米田

职务:普通成员
等级:2
金币:-1.0
发贴:296
#12004/5/12 12:00:37
我以下的代码是:在第一个页面检察数据库是否有此ID,如没有则继续,但问题是为何不会继续.
<?php
$post_lct_id=$lct_id;
include "admin/inc/conn.php";
$query="select lct_id from user where lct_id='$post_lct_id'";
$result=@mysql_query($query);
$rows=mysql_num_rows($result);
if ($rows >=1)
    {
    ?>
    <script>
    alert( "User ID already engross,please check!!";
    </script>
    <?
    include("checkid.htm";
    exit;
    }
else
{
$continue=1; //继续执行此页的HTML代码.

}

?>



buzzard

职务:普通成员
等级:1
金币:0.0
发贴:75
#22004/5/17 17:33:42
$post_lct_id
$rows
echo出来看看是不是有问题

建议include改成include_once

建议
$query="select count(lct_id) as nRows from user where lct_id='$post_lct_id'";
$result=@mysql_query($query);
$rows=$result[' nRows'];