大家好我只是想问一下如何在PHP中制作以下代码
<input type="text" name="SteamID64">
当此人进入并单击该按钮时,它应填写下面的
中的值 <?php
$xml=simplexml_load_file("http://steamcommunity.com/profiles/<STEAMID64 HERE>?xml=1");
echo $xml->steamID . "<br>";
echo $xml->onlineState . "<br>";
echo $xml->privacyState . "<br>";
echo $xml->avatarFull . "<br>";
echo $xml->body;
?>
我很抱歉,如果我做错了这个问题我是新来的
答案 0 :(得分:1)
使用$_POST
获取ID:
$format = "http://steamcommunity.com/profiles/%s?xml=1";
$url = sprintf($format, $_POST["SteamID64"]);
$xml=simplexml_load_file($url);
我假设您已正确设置表单,例如:
<form action="TheTarget.php" method="post">
<input type="text" name="SteamID64" />
<input type='submit' value='submit' />
</form>
答案 1 :(得分:0)
if (isset($_POST['SteamID64'])) {
$id = $_POST['SteamID64'];
$xml = simplexml_load_file("http://steamcommunity.com/profiles/{$id}?xml=1");
}