How to properly pass form data in php?

后端 未结 6 1450
天涯浪人
天涯浪人 2021-01-25 14:07

I\'m using php to build a small form that requires passing 2 variables for processing.

I got the example off w3schools and although the info gets passed in the URL, the

6条回答
  •  情深已故
    2021-01-25 14:45

    Your code seems correct. Does PHP work? Does

    echo phpinfo();
    

    work? If yes, what does

    var_dump($_SERVER); 
    

    give you? Do the GET parameters appear there?

提交回复
热议问题