Radio button post data of multiple input fields

前端 未结 4 868
半阙折子戏
半阙折子戏 2021-01-28 00:18

I have a form in my PHP page which is created by a loop through an array.

echo \'
4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-28 01:00

    Form code:

        
        
    

    And then you will have value of size. And array of amounts with size keys.

        $size   = $_POST['size'];
        $amount = $_POST['amount'][$size];
    

提交回复
热议问题