连接从php中的$ _Post格式中检索到的字符串

时间:2012-01-15 22:44:33

标签: php string forms post concatenation

我通过HTML表单发布一个字符串,其中包含以下代码:

<html>
<body>
<form name="form" enctype="multipart/form-data" action="test.php" method="post">
         <input name="message" 
         type="text" value=""><br/><br/>
        <input type="submit" value="Upload"/><br/>
         </form>
         </body>
         </html>

test.php的代码如下:

   <?php
   $string1 = '$_POST["message"]';
   $og_url = "http://thepropagator.com/facebook/testapp/issue.php?name=".$string1;
echo $og_url;
   ?>

我遇到的问题是发布的字符串“$ string1”似乎没有显示在URL“http://thepropagator.com/facebook/testapp/issue.php?name=”的末尾我试图将它连接起来。谁能解释一下我做错了什么?

1 个答案:

答案 0 :(得分:4)

我认为你想要$string1 = $_POST['message'];,没有引号。虽然我希望您的代码能够提供http://thepropagator.com/facebook/testapp/issue.php?name=$_POST["message"]网址。