PHP $_POST get data array

前端 未结 3 659
臣服心动
臣服心动 2020-12-14 21:21

I\'m trying to do a multiple textbox with the same names.
Here is my code.

HTML

Email 1:

        
3条回答
  •  旧时难觅i
    2020-12-14 21:53

    Another example could be:

    
    
    
    
     $value)
              echo "key $key is $value 
    ";

    will display

    key 0 is 1
    key 1 is 2
    key 2 is 3
    

提交回复
热议问题