如何将sql结果恢复为HTML

时间:2015-03-27 21:52:45

标签: php html mysql

研究了很多东西,问题出在最后一行,我想访问查询结果并将它们存储在HTML代码块中。我假设它是$ _get。提前致谢。     <html> <?php //$y properly returned by mysql $x = "<em>".$y."<br><p>" ; ECHO "<p><p>".$x."</p></p>";?> //this is the problem all I see is "$x" not the contents. <div>$x</div></html>

4 个答案:

答案 0 :(得分:1)

在最后一行添加回音

echo "<div>$x</div></html>"

答案 1 :(得分:0)

试试这个

echo "<p><p>";
echo $x;
echo "</p></p>";

echo "<p><p>";
print $x;
echo "</p></p>";

答案 2 :(得分:0)

<html>
<head>
<title>Results</title>
</head>
<body>

<?php
mysql_connect("mysql.myhost.com", "user", "password") or die (mysql_error ());

mysql_select_db("db_name") or die(mysql_error());
$strSQL = "SELECT * FROM table_name";
$rs = mysql_query($strSQL);

while($row = mysql_fetch_array($rs)) {

  echo $row['results row name go here'] . "<br />";

  }

mysql_close();
?>
</body>
</html>

这将是一个很好的起点。这只是一个例子。您需要更改自己的表,行等的组件

答案 3 :(得分:0)

<?php 

// $ y由mysql正确重新调整          $ x = $ y;         ?&GT;          //这就是问题所有我看到的是“$ x”而不是内容。          “;?&GT;