Multiple $_GET from a link parameters

前端 未结 4 526
盖世英雄少女心
盖世英雄少女心 2021-01-14 14:22

I\'m sending values to php file using js like that:

validation.php?firstName=test?lastName=test?email=test?contactNumber=test?title=test?description=test
         


        
4条回答
  •  逝去的感伤
    2021-01-14 15:01

    You need to separate them with the ampersand sign:

    validation.php?firstName=test&lastName=test&email=test&contactNumber=test&title=test&description=test
    

提交回复
热议问题