gpt4 book ai didi

php - 将 GET 数据从数据库发送到 url

转载 作者:行者123 更新时间:2023-11-29 09:10:40 25 4
gpt4 key购买 nike

编辑:我想加载每个玩家代号的页面,以便它创建图像。

编辑2:这是我的新脚本,如果它工作正常的话page上面会有超过 2 个图像

<?php
require_once('sql.php');

$result = mysql_query("SELECT * FROM gamertags");

while($row = mysql_fetch_array($result)){
// Prepare gamertag for url
$gamertag = strtolower($row['gamertag']);
//echo $gamertag.'<br />';
$url = "http://halogamertags.com/tags/index.php?player_name=".urlencode($gamertag);
$get_result = file_get_contents($url);
}
?>

最佳答案

$tag_encoded = urlencode($gamertag);

$url = "http://halogamertags.com/tags/index.php?player_name=$tag_encoded";

// To request the page's content
$html = file_get_contents($url);

关于php - 将 GET 数据从数据库发送到 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5670929/

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