這是從DB中選擇並設置圖像標籤的代碼。如何從數據庫中取回php查詢並設置textarea與執行?
<div>
<?php $query = mysql_query("SELECT * FROM company where sn='1'");
while($rows = mysql_fetch_assoc($query)){
$logo = $rows['logo'];
$password = $rows['password'];
$phone = $rows['phone'];
}
?>
<img src="<?php echo $logo ?>"/>
</div>
當我們得到這個並設置在textarea然後我們希望這個查詢{保存在db}執行。並輸出只顯示Logo名稱。
但是這次這個顯示完整的查詢保存在db中。 我們希望得到textarea的輸出:
<div><img src="logoname"/></div>
然後,你就必須把它放在
你不能把img標籤內因爲它的文本輸入類型爲