我一直在努力寻找一种方法将上面代码的查询打印到HTML部分,但我找不到任何东西。我看到可以使用php的fetch_assoc()
通过HTML表格显示结果。下面是代码,在全局视图中代码很好,因为我在完整的php页面上测试它。但是我需要一个解决方案来将它放在HTML中。我在尝试一件不可能的事吗?
<?php
require_once('connconf.php');
$conn = mysqli_connect($server, $user, $pw, $bdname) or die ('Connection Error');
$sqlquery = "select ID_Vote from Votes where ID_Player = '1'";
if($result = mysqli_query($conn, $sqlquery)) {
$rowcount = mysqli_num_rows($result);
echo $rowcount; //this is the value i want to publish on a HTML <label>
}
?>
答案 0 :(得分:0)
伙计们我找到了问题的解决方案,所有的查询都没问题就像我说的那样。但我的网页的扩展名是.HTML,当我将其更改为.php时,它可以工作。现在我使用.php扩展名而不是.html
使用HTML和PHP代码运行网站感谢您的关注。