---
title: "Get() and Post methods()"  
description: "Get() and Post methods()"  
author: "Anonymous User"  
published: 2018-07-09  
updated: 2018-07-10  
canonical: https://www.mindstick.com/forum/34601/get-and-post-methods  
category: "php"  
tags: ["web development", "php", "phpmyadmin"]  
reading_time: 1 minute  

---

# Get() and Post methods()

[Difference](https://www.mindstick.com/articles/157114/good-news-or-bad-news-and-the-difference-is) between Get() and [Post](https://www.mindstick.com/articles/12829/aspects-that-make-australia-post-shipping-extension-a-useful-tool) [methods](https://www.mindstick.com/articles/13060/runny-nose-remedy-methods-that-work-best)() ??

## Replies

### Reply by Prakash nidhi Verma

Difference between Get() and Post methods() :

GET(Requests data from a specified resource) :

- requests can be cached

- $_get is an array which is passed via URL parameter

- requests remain in the browser history

- GET method is visible to everyone which is shown in URL

- requests can be bookmarked

- requests have length restrictions

- requests should be used only to retrieve data

```
 /test/demo_form.php?name1=value1&name2=value2 
```

POST(Submits data to be processed to a specified resource) :

- requests are never cached

- $_post is an array which is passed by HTTP POST method

- requests do not remain in the browser history

- POST method is invisible to everyone which is not shown in URL

- requests cannot be bookmarked

- requests have no restrictions on data length

```
POST /test/demo_form.php HTTP/1.1 Host mindstick.com
name1=value1&name2=value2
```


---

Original Source: https://www.mindstick.com/forum/34601/get-and-post-methods

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
