我怎么能把里面的字符串导出到另一个if

时间:2016-02-01 10:09:03

标签: php html

你好,我怎么能把字符串$ test送到另一个,如果

    if  (isset($_POST["but"])){
$test = 'website';
}
像这样

    if  (isset($_POST["bu2t"])){
echo $test;
}

1 个答案:

答案 0 :(得分:1)

像这样:

$test = null;
if  (isset($_POST["but"])){
   $test = 'website';
}

并且:

if(isset($_POST["bu2t"]))
{
    echo $test;
}