Home  >  Article  >  Backend Development  >  Implementation code for php radio radio button to obtain and maintain values_PHP Tutorial

Implementation code for php radio radio button to obtain and maintain values_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 15:38:291111browse

php reads radio button radio value

Copy code The code is as follows:




php reads the radio button radio value





1


2









if( $_POST )
{
echo 'You selected single selection',$_POST['RadioGroup1'];
//Since only one radio button can be selected at the same time, just make them have the same name and it will be OK.
}
?>

How to maintain the value of radio button in php, mainly the idea.
Copy code The code is as follows:

/>Male
/>Female

It is also recommended not to use it For Chinese character recognition, it is better to use 0 and 1 to represent male and female.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321745.htmlTechArticlephp Read the radio value of the radio button and copy the code as follows: html xmlns="http://www.w3 .org/1999/xhtml" head meta http-equiv="Content-Type" content="text/html; charset=gb2312" / titlep...
Statement:
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