PHP,Curl获取变量和响应

时间:2013-06-18 09:17:15

标签: php variables curl get icecast

我有一张表格......

<form action="response.php" method="get" name="titles">
<p><input id="titles" onclick="this.select()" type="text" name="titles" value="Live Now! DJ Name - Show Name" /> <input type="submit" value="Submit" /></p>
</form>

向response.html提供变量$ titles。但它无法正常工作。

我的response.php输出的格式应该是......

http://adminusername:adminpassword@mysite.com:8000/admin/metadata?mount=/mountname&mode=updinfo&song=$myvariableforminputhere

这是response.html表单似乎有效,但是包含我的变量有问题。我有点不好意思,并借用了其他一些人的代码:/

<html>
<head>
<title>PHP Form Variables Example</title>
</head>
<body>

<?php
{
//simply copy and paste this code block for each server you need to add
$serv["host"][] = "mysite.com"; //ip or hostname the server is running on. Don't include http://
$serv["port"][] = "8000"; //port the server is running on
$serv["mount"][] = "/mymount"; //this format: /mount
$serv["user"][] = "user"; //icecast server username
$serv["passwd"][] = "pass"; //icecast server password
echo $_GET["titles"];

    {
        $mysession = curl_init();
        curl_setopt($mysession, CURLOPT_URL, "http://".$serv["host"][$count].":".$serv["port"][$count]."/admin/metadata?mount=".$serv["mount"][$count]."&mode=updinfo&song=test".$titles);
        curl_setopt($mysession, CURLOPT_HEADER, false);
        curl_setopt($mysession, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($mysession, CURLOPT_POST, false);
        curl_setopt($mysession, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
        curl_setopt($mysession, CURLOPT_USERPWD, $serv["user"][$count].":".$serv["passwd"][$count]);
        curl_setopt($mysession, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($mysession, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
        curl_setopt($mysession, CURLOPT_CONNECTTIMEOUT, 2);
        curl_exec($mysession);
        curl_close($mysession);
    }

    echo "song updated";
}
?>

<p><a href="javascript:history.go(-1)">Back</a></p>

</body>
</html> 

编辑:

感谢用户:byf-ferdy,下面的response.php现在可以使用上面的表单代码。还要感谢Audioprobe在http://forum.loudcity.net/viewtopic.php?id=4160获取原始代码!

<html>
<head>
<script>
//Set up java for back button
function goBack()
  {
  window.history.back()
  }
</script>
</head>
<body>

<?php

//simply copy and paste this code block for each server you need to add
$serv["host"][] = "mysite.com"; //ip or hostname the server is running on. Don't include http://
$serv["port"][] = "8000"; //port the server is running on
$serv["mount"][] = "/mymount"; //this format: /mount
$serv["user"][] = "user"; //icecast server username
$serv["passwd"][] = "pass"; //icecast server password

$encoded = urlencode($_GET['titles']); //Make sure '+' and spaces are sent correctly by encoding all +'s to be %2B

        $mysession = curl_init();
        curl_setopt($mysession, CURLOPT_URL, "http://".$serv["host"].":".$serv["port"]."/admin/metadata?mount=".$serv["mount"]."&mode=updinfo&song=".$encoded);
        curl_setopt($mysession, CURLOPT_HEADER, false);
        curl_setopt($mysession, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($mysession, CURLOPT_POST, false);
        curl_setopt($mysession, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
        curl_setopt($mysession, CURLOPT_USERPWD, $serv["user"].":".$serv["passwd"]);
        curl_setopt($mysession, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($mysession, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
        curl_setopt($mysession, CURLOPT_CONNECTTIMEOUT, 2);
        curl_exec($mysession);
        curl_close($mysession);

    echo "Titles updated: ";
    echo $_GET["titles"];

?>
<!--Implement back button-->
<p><input type="button" value="Back" onclick="goBack()"></p>
</form>

</body>
</html> 

1 个答案:

答案 0 :(得分:1)

正如我在评论中已经写过的那样,你应该删除大括号,因为它们在你的代码中已经过时了。同时删除所有行

$serv["host"][] = "budgiecollective.dyndns.org";

[]所以该行看起来像这样:

$serv["host"] = "budgiecollective.dyndns.org"; 

之后删除代码中出现[$count]的任何内容,因为该变量不再使用。 最后但并非最不重要的是将此行中的$titles更改为$_GET['titles']

curl_setopt($mysession, CURLOPT_URL, "http://".$serv["host"][$count].":".$serv["port"][$count]."/admin/metadata?mount=".$serv["mount"][$count]."&mode=updinfo&song=test".$titles);