Php radio implementation code for getting and holding a single record value

Source: Internet
Author: User

Php read single-choice button radio Value
Copy codeThe Code is as follows:
<Html xmlns = "http://www.w3.org/1999/xhtml">
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312"/>
<Title> radio value of the php read single-choice button </title>
</Head>
<Body>
<Form id = "form1" name = "form1" method = "post" action = "">
<P>
<Label>
<Input type = "radio" name = "RadioGroup1" value = "1"/>
Single choice </label>
1 <br/>
<Label>
<Input type = "radio" name = "RadioGroup1" value = "2"/>
Single choice </label>
2 </p>
<P>
<Label>
<Input type = "submit" name = "Submit" value = "submit"/>
</Label>
<Br/>
</P>
</Form>
</Body>
</Html>
<?
If ($ _ POST)
{
Echo 'select a single select', $ _ POST ['radiogroup1'];
// Since the attributes of a Single-choice button can only be selected at the same time, it is OK to directly change their names to the same one.
}
?>

The main idea is how to maintain the value of a single-choice button in php.
Copy codeThe Code is as follows:
<Input name = "sex" type = "radio" value = "male" <? Php if ($ _ POST ['sex']! = "") Echo "checked = checked;"?> /> Male
<Input type = "radio" name = "sex" value = "female" <? Php if ($ _ POST ['sex'] = "female") echo "checked = checked";?> /> Female
 
We also recommend that you do not use Chinese characters for identification. 0, 1 represents male and female.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.