从表中请求数据并以html格式显示

时间:2013-03-08 05:57:41

标签: php html mysql

我的PHP代码是这样的:

<?php
$con=mysqli_connect("host","user","pass","db_name");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }
$result_set = mysqli_query($con,"SELECT points FROM total WHERE id = 1");
$row = mysqli_fetch_assoc($result_set);
$old_total = $row['points'];
$new_total = $old_total + $_REQUEST['total'];
mysqli_query($con,"UPDATE total SET points = $new_total WHERE id = 1");
mysqli_close($con);
?>

所以现在我需要在我的html页面上显示$ new_total,请帮帮我。


这是我使用的最终代码:

<?php include 'something.php'; ?>
<h3> <?php echo $new_total?> </h3>

5 个答案:

答案 0 :(得分:1)

在主页中包含此文件,然后将此代码放在主页中,您将能够看到输出:

    <?php echo $new_total ?>

答案 1 :(得分:0)

只需echo在合适的地方

echo $new_total;

答案 2 :(得分:0)

简单为<?php echo $new_total ?>

答案 3 :(得分:0)

只需在html中显示此变量,例如<h3> <?php echo $new_total?> </h3>.

答案 4 :(得分:0)

在您的新 html页面

中加入此php文件

并在新的 html页面代码中回复此类内容: -

<?php 
      include "this.php";  /*your current php file name */ 
      echo $new_total;    /*print your new_total in html page */
?>

希望它有用。