Multiple inputs with same name through POST in php

后端 未结 5 2103
误落风尘
误落风尘 2020-11-22 02:54

Is it possible to get multiple inputs of the same name to post and then access them from PHP? The idea is this: I have a form that allows the entry of an indefinite number

5条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 03:06

    It can be:

    echo "Welcome".$_POST['firstname'].$_POST['lastname'];
    

提交回复
热议问题