PHP Read radio button Radio value
Copy CodeThe code is as follows:
<title>PHP read radio button Radio value</title>
if ($_post)
{
Echo ' You have chosen single choice ', $_post[' RadioGroup1 '];
Because the properties of a radio button can only be selected at the same time, it is OK to directly name them.
}
?>
How to maintain the value of radio buttons in PHP is primarily a way of thinking.
Copy CodeThe code is as follows:
/> Male
/> Women
It is also recommended not to use Chinese character recognition, with 0, 1 for male, female is better.
http://www.bkjia.com/PHPjc/321745.html www.bkjia.com true http://www.bkjia.com/PHPjc/321745.html techarticle PHP Read radio button Radio value copy code code as follows: HTML xmlns= "http://www.w3.org/1999/xhtml" head meta http-equiv= "Content-type" content= " text/html; charset=gb2312 "/Titlep ...