在php中如何取到name名字为变量所对应的值呢

WBOY
Release: 2016-06-13 13:04:57
Original
923 people have browsed it

在php中怎么取到name名字为变量所对应的值呢?
    $result=$row['result'];
    $pid=$row['pid'];
        if($result =='符合')
        {
echo "符合 ";
echo "不符合 ";
echo "不涉及";
}
         if ($result == '不符合')
        {

echo "符合 ";
echo "不符合 ";
echo "不涉及";

}
        if($result == '不涉及')
        {

echo "符合 ";
echo "不符合 ";
echo "不涉及";

}
 if($result == '')
        {
echo "符合 ";
echo "不符合 ";
echo "不涉及";
}

     ?>
我在另一个页面怎么取到post提交"name='$pid'"对应的value的值呀
另一个页面$a=$_POST['$pid'];这样肯定不对呀,怎么取呢?这个"name"必须要用一个变量代替,否则单选功能就会有问题,请高手帮帮忙,谢谢!

------解决方案--------------------
提交后 print_r($_POST); 就知道怎么取了
------解决方案--------------------

<br />
<input type='radio' name='result' value='符合' $result=="符合"?"checked":""><br />
<input type='radio' name='result' value='不符合' $result=="不符合"?"checked":""><br />
<input type='radio' name='result' value='不涉及' $result=="不涉及"?"checked":""><br />
Copy after login

------解决方案--------------------

引用:
提交后 print_r($_POST); 就知道怎么取了

+1 

------解决方案--------------------
引用:
PHP code?1234

我说的name不能取这个result常量的名字,name的名字要用变量代替。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template