Hiding url on address function

Asked By 0 points N/A Posted on -
qa-featured

Hi experts,

Which between $_GET and $_POST functions allow hiding url on address of a browser?

 

SHARE
Best Answer by John D Armstrong
Answered By 0 points N/A #157938

Hiding url on address function

qa-featured

Hello Neil,

 

 

$_POST variable is predefined and generally used to get values from a form sent with method="post”. Information which sent with a form using the POST method is normally invisible to others. With this you can send any amount of information. However, because the variables are invisible in the URL, you will find it difficult to bookmark the page.

 

Thank you.

Rubi Sharlene

 

Best Answer
Best Answer
Answered By 10 points N/A #157939

Hiding url on address function

qa-featured

 

Hi there Neil,
 
Between $_GET and $_POST, with the $_POST Variable the information sent with a form invisible or not shown in the URL but it exposes just as much information as a $_GET variable in the actual network communication between the client and server. If you need to pass information that is sensitive, your first line of defense would be to pass it using HTTPS.
 
Hope this answers your question.
 
Thanks

Related Questions