GET URL parameter in PHP

前端 未结 9 1077
旧时难觅i
旧时难觅i 2020-11-22 07:32

I\'m trying to pass a URL as a url parameter in php but when I try to get this parameter I get nothing

I\'m using the following url form:

http://loc         


        
9条回答
  •  眼角桃花
    2020-11-22 08:21

    As Alvaro said, $_GET is not a function but an array containing the parameters So you can retrieve one element from that array using

    
    

    Expected OP:

    www.google.com
    

提交回复
热议问题