gpt4 book ai didi

php - 从 PHP 创建 XML 文件但得到 HTML 文件

转载 作者:太空宇宙 更新时间:2023-11-03 11:02:24 26 4
gpt4 key购买 nike

<分区>

我正在使用此代码从 PHP 文件创建一个 XML 文件(未归档)。这是代码:

<?php
include_once ('conf.php');
$conn = mysql_connect($host, $user, $password);
if (!$conn) {
die('No hay conexion a la BBDD');
}
$bd = mysql_select_db($name, $conn);
if (!$bd) {
die ('Error en la BBDD');
}
$query = "select * from usuarios where activo = 0 order by puntuacion desc limit 0, 10";
$res = mysql_query($query, $conn);
$salida = '<?xml version="1.0" encoding="utf-8" standalone="yes" ?>'."\n";
$salida .= '<score>'."\n";
$i = 1;
while ($row = mysql_fetch_array($res))
{
$salida.= '<posicion num="' . $i . '">'."\n";
$salida .= '<id>'.$row['id'].'</id>'."\n";
$salida .= '<puntuacion>'.$row['puntuacion'].'</puntuacion>'."\n";
$salida .= '</posicion>'."\n";
$i++;
}
$salida .= '</score>';
mysql_free_result($res);
mysql_close($conn);
echo $salida;
?>

当我调用此文件时,我获得(使用 Chrome 检查器)嵌入在 HTML 文件中的 XML 文件及其 html、head 和 body 标签。我想让这个 php 文件被 ajax 的 get 函数读取。

有什么问题吗?

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