Send radio box value with $_POST

前端 未结 6 1783
鱼传尺愫
鱼传尺愫 2021-01-19 11:10

How can I send a radio or checkbox value to the $_POST array even when the field is empty?

\';
            


        
6条回答
  •  日久生厌
    2021-01-19 12:11

    HTML :
    
    Male Female
    PHP : if(isset($_POST)) { echo '
    ';
        print_r($_POST);
        echo '
    '; }

提交回复
热议问题