本文整理汇总了PHP中DbHelper::get_a方法的典型用法代码示例。如果您正苦于以下问题:PHP DbHelper::get_a方法的具体用法?PHP DbHelper::get_a怎么用?PHP DbHelper::get_a使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DbHelper
的用法示例。
在下文中一共展示了DbHelper::get_a方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: DbHelper
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
require_once '../lib/global.php';
if ($_GET['id']) {
$conn = new DbHelper('pg_news');
$rs = $conn->get_a($_GET['id']);
if (!$rs) {
echo "查询失败!";
exit;
}
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>编辑新闻</title>
</head>
<body>
<form name="form1" action="UpdateNews.php" method="post">
<input type="hidden" name="id" value="<?php
echo $_GET['id'];
?>
" />
<table>
<tr>
<td style="width:100px;">新闻标题:</td>
<td><input id="tb_title" name="title" type="text" style="width:50%;" value="<?php
echo $rs->title;
?>
" /></td>
</tr>