Radio Buttons with PHP Form Handling

后端 未结 4 477
暖寄归人
暖寄归人 2020-12-30 09:19

I have a basic form that I am submitting using some basic PHP. I have the form submission working great, except that I have a radio button (for preferred method of contact)

4条回答
  •  温柔的废话
    2020-12-30 09:57

    Just give your radio inputs a value-attribute. This is what will get submitted via POST. You can then access it via $_POST['nameofradio']

       Email
       Phone
    

提交回复
热议问题