重写多个回声的简单任务。 PHP

时间:2011-01-24 03:31:32

标签: php

请帮我在单个回音中重写这个并将其保存在变量($text

echo $_POST['var1'];
echo "f";
echo $_POST['var2'];

2 个答案:

答案 0 :(得分:4)

$text = '';
$text .= 'www.domain.com';
$text .= $_POST['var1'];
$text .= 'f';
$text .= $_POST['var2'];
$text .= $letter1.$letter2;
$text .= '?name=';
$text .= $_POST['var3'];
$text .= '&pass=';
$text .= $_POST['var4'];
$text .= '&id=';
$text .= $_POST['var5'];
echo $text;

答案 1 :(得分:0)

请记住,echo可以使用多个参数(使用逗号分隔符)

echo $_POST['var1'] , "f" , $_POST['var2'];

您不需要连接。