如何在php中从数据库写文本框中的文本

时间:2011-06-02 18:13:00

标签: php mysql html

我有一个表单,我在$ GET中从上一页获取值。我想从数据库中获取大约3个不同的值并在文本框中显示它们。我该怎么办?以下是我从数据库获取数据的代码。

<?php
require_once('config.php');
$id = $_GET['id'];
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if(!$link) {
        die('Failed to connect to server: ' . mysql_error());
}

//Select database
$db = mysql_select_db(DB_DATABASE);
if(!$db) {
        die("Unable to select database");
}
$query = "select question,price,sequence from questions where status = 1 and qid =".$id;
//echo $query;
$result=mysql_query($query);
if (!$result) {
    die('Invalid query: ' . mysql_error());
}
$num_rows = mysql_num_rows($result);
if($num_rows==0) {
 echo '<center><font color="red"><b>No record found!!</b></font></center>';
}
else {
$row = mysql_fetch_array($result);
echo $row['question'];
echo $row['sequence'];
echo $row['price'];
}

&GT;

感谢
的Pankaj

1 个答案:

答案 0 :(得分:4)

<textarea><?php echo htmlentites($row['question']);?></textarea>

<input type="text" value="<?php echo htmlentites($row['question']);?>" />

取决于你的喜好。