| | |
which method work fast GET() or POST() ?
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
Most find that speed is not the issue
post is better for some purposes, get for others
this discussion may help
http://stackoverflow.com/questions/1...ster-than-post
post is better for some purposes, get for others
this discussion may help
http://stackoverflow.com/questions/1...ster-than-post
Failure is not an option It's included free, you don't have to do anything to get it
If at first you dont succeed, join the club
Of course its always in the last place you look, you dont keep looking after you find it
Please mark solved problems, solved
If at first you dont succeed, join the club
Of course its always in the last place you look, you dont keep looking after you find it
Please mark solved problems, solved
•
•
•
•
Most find that speed is not the issue
post is better for some purposes, get for others
this discussion may help
http://stackoverflow.com/questions/1...ster-than-post
www.fijiwebdesign.com - web design and development and fun
Cpanel Email - Let users Register email accounts on your website upon registration
Ajax Chat - Fully browser based chat!
Cpanel Email - Let users Register email accounts on your website upon registration
Ajax Chat - Fully browser based chat!
•
•
•
•
Something not mentioned on that link is that POST requests are not cached. GET requests are, and thus reduce the load on your server. Subsequent requests using GET will appear much faster, since the request will actually be taken mostly from the browsers cache, and or intermediate HTTP caches. So for anything that doesn't modify data on your server, use a GET. If you want the data to never be cached, use post.
Failure is not an option It's included free, you don't have to do anything to get it
If at first you dont succeed, join the club
Of course its always in the last place you look, you dont keep looking after you find it
Please mark solved problems, solved
If at first you dont succeed, join the club
Of course its always in the last place you look, you dont keep looking after you find it
Please mark solved problems, solved
•
•
Join Date: Jan 2009
Posts: 16
Reputation:
Solved Threads: 3
If you want to follow REST or RESTful urls such as the REST architecture states (which seems to be getting more popular) then GET and POST have two very different uses. GET should be used to 'get' data while POST should be used to 'post' or 'create new instances of' types of requests.
GET/POST/PUT/DELETE all have their purposed but people are using them without keeping their initial purpose in mind.
More info here:
http://en.wikipedia.org/wiki/Represe...State_Transfer
GET/POST/PUT/DELETE all have their purposed but people are using them without keeping their initial purpose in mind.
More info here:
http://en.wikipedia.org/wiki/Represe...State_Transfer
My code blog: http://www.joeyrivera.com
![]() |
Similar Threads
- Ctrl+Alt+Del does not work after fast user switch (Windows NT / 2000 / XP)
- Source Code that don't work? (Java)
- height: 100% - cannot get this to work (HTML and CSS)
- problem about the codding (C)
Other Threads in the PHP Forum
- Previous Thread: Error when refreshing template in PhpBB3
- Next Thread: How to configure Mozilla Firefox in using PHP
Views: 385 | Replies: 4
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cron curl database date directory display download dynamic ebooks echo email error file files folder form forms function functions google href htaccess html image include insert integration ip java javascript joomla jquery js limit link login loop mail mediawiki menu methods mlm mod_rewrite multiple mysql oop parse paypal pdf php problem query radio random recursion regex remote script search select server sessions sms soap source space speed sql stored structure subdomain syntax system table tutorial update updates upload url validation validator variable video web xml youtube






