Multiple $_GET from a link parameters

前端 未结 4 551
盖世英雄少女心
盖世英雄少女心 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:20

    ? indicates the start of a query string but key/value pairs within it are separated with & or (less commonly) ;.

提交回复
热议问题