Learn GET Form Handling with PHP, GET Requests and HTML Form Handling with PHP, Get Method Attribute

In today’s PHP programming video we take a look at Learn GET Form Handling with PHP, GET Requests and HTML Form Handling with PHP, Get Method Attribute. This PHP programming lesson is based on Codecademy’s Learn PHP free programming course. We are in the “HTML Form Handling in PHP” section. The lesson is “GET Form Handling”. In it, we learn that in HTML we are able to set a form method to “get”. Doing so will specify that we would like the form to be submitted with the GET method. When we use this method, our form entries are passed as parameters into a URL query string. Whenever we submit a form, we can access that form’s data using the $_GET superglobal array. Learning to access this data is key in becoming a professional PHP developer. Make sure to practice accessing form fields in PHP and make sure to understand how PHP GET requests to work and how we are able to access form data from the $_GET superglobal variable! Thanks for watching Learn GET Form Handling with PHP, GET Requests and HTML Form Handling with PHP, Get Method Attribute.