私は現在、このコードを使用して、データベースから複数行のテキストを印刷しています
$query_content= "select * from home ";
$result_content= mysql_query($query_content,$con);
while ($text = mysql_fetch_array($result_content))
{
$content = $text['homecontent'];
}
そして、このHTMLコードを使用します。
<p>
<?php print $content; ?>
<p/>
データベース内のテキストは次のとおりです。
abc
def
ghi
しかし、私はこれを手に入れています
abc def ghi
何か案は?
ありがとう。