180 likes | 198 Vues
In this PHP GET and POST tutorial you will learn how to send the encoded user information appended to the page request with and without HTTP headers. <br><br>Learn more at: https://www.simplilearn.com/pgp-full-stack-web-development-certification-training-course?utm_campaign=PHP&utm_medium=Description&utm_source=Slideshare
E N D
PHP in GET and POST Method natural language processing in 5 minutes, what is nlp and how does it work?, natural language processing tutorial, natural language processing in 10 minutes, nlp tutorial for beginners, nlp tutorial, nlp in 10 minutes, nltk tutorial, nltk tutorial for beginners, nltk training, natural language processing training, nlp with python tutorial, nlp programming tutorial, nlp neural network tutorial, nlp machine learning tutorial, nltk tutorial in python, simplilearn Anjali has to share the cover slide
What’s in it for you? • GET In PHP
What’s in it for you? • GET In PHP • POST In PHP
PHP in GET and POST Method natural language processing in 5 minutes, what is nlp and how does it work?, natural language processing tutorial, natural language processing in 10 minutes, nlp tutorial for beginners, nlp tutorial, nlp in 10 minutes, nltk tutorial, nltk tutorial for beginners, nltk training, natural language processing training, nlp with python tutorial, nlp programming tutorial, nlp neural network tutorial, nlp machine learning tutorial, nltk tutorial in python, simplilearn Anjali has to share the cover slide Click here to watch the video
GET and POST There are two ways the browser client can send information to the web server. GET Method
GET and POST There are two ways the browser client can send information to the web server. POST Method GET Method
GET in PHP The GET method sends the encoded user information appended to the page request It builds a long string that appears in the server logs It builds a long string that appears in the server logs
GET in PHP </>… The GET method sends the encoded user information appended to the page request It has restriction of sending up to 1024 characters only It builds a long string that appears in the server logs It builds a long string that appears in the server logs It builds a long string that appears in the server logs
GET in PHP </>… The GET method sends the encoded user information appended to the page request It has restriction of sending up to 1024 characters only It builds a long string that appears in the server logs It builds a long string that appears in the server logs It builds a long string that appears in the server logs It builds a long string that appears in the server logs Do not use GET method in case you want to share confidential information
GET in PHP The GET method sends the encoded user information appended to the page request It can not be used to share images or word documents to the server It builds a long string that appears in the server logs
GET in PHP The GET method sends the encoded user information appended to the page request The data sent by GET method can be accessed using QUERY_STRING environment variable It can not be used to share images or word documents to the server It builds a long string that appears in the server logs
POST in PHP The POST method sends information via HTTP headers
POST in PHP The POST method sends information via HTTP headers Does not have any restriction on data size to be sent It builds a long string that appears in the server logs
POST in PHP The POST method sends information via HTTP headers It is used to send ASCII as well as Images and documents Does not have any restriction on data size to be sent It builds a long string that appears in the server logs It builds a long string that appears in the server logs
POST in PHP The POST method sends information via HTTP headers It is used to send ASCII as well as Images and documents Does not have any restriction on data size to be sent It builds a long string that appears in the server logs It builds a long string that appears in the server logs It builds a long string that appears in the server logs The information shared via POST method is secure