首页 > 开发 > PHP > 正文

七 获取信息实例

2024-05-04 22:55:50
字体:
来源:转载
供稿:网友
<?
$conn = @mysql_connect('localhost:3306','test','test');
include_once "js.class.php";
include_once "pager.class.php";
include_once "whxbb.class.php";
include_once "whxbb_article.class.php";
// 以上代码最好全放在一个包含文件中

<?
// 显示id为3的记录的所有字段信息
$article = new article();
$info = $article->getinfo(3);
if (whxbb::iserror($info))
    new whxbb_error("读取文章信息失败,请您稍后再试", 1, whxbb_error_echo);
else if($info == 0)
    new whxbb_error("没有找到您需要的记录", 2, whxbb_error_echo);
else
{
    echo $info['title'];
    echo "<br>";
    echo "作者:" . $info['author'];
    echo "<br>";
    echo $info['content'];
}
@mysql_close($conn);
?>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表