gpt4 book ai didi

php - 无法在 html 中显示输出

转载 作者:可可西里 更新时间:2023-10-31 22:56:14 27 4
gpt4 key购买 nike

我有一个函数可以打印出很多学分:

<?php
function selectCredits()
{
include 'sqlvars.php';
$con = mysql_connect("localhost","bbbb","bbbb");
if (!$con){
die('Could not connect: ' . mysql_error());
}
mysql_select_db("bbbb", $con);
$result = mysql_query($selectCredits);

while($row = mysql_fetch_array($result)){
echo $row['credits'];
}
}
?>

当我使用 php 文件调用它时:

<?php 
include 'sql.php';
selectCredits();
?>

我可以看到输出,但是当我在 HTML 文档中时,我无法使用以下代码获得结果:

 <center><b>Your credits: </b></center> <?php include 'sql.php'; selectCredits(); ?>

输出总是:Your credits: 没有查询结果。

可以肯定的是,我遗漏了一些非常小的东西。我不是 php 的人,但我愿意学习它,已经浪费了一个小时没有任何成功。

最佳答案

如果你真的想让html文件执行php代码,试试在htaccess中加入这行:

AddType application/x-httpd-php .html

关于php - 无法在 html 中显示输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14955715/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com