[ 01011011 @ 24.03.2002. 18:09 ] @
Npr. imam neku forumu koji ce korisnik da posalje sa sajta, da bih je ja dobio.

KOju metodu da koristim Get POST ILI DA KAD PISEM U HTML da stavim
METHOD=GET|POST video sam da to moj editor radi.

Sad get se valjda koristi kad uzimam informacije od korisnika a post??

Ne kontam amlko mi je zbunjujuce??
[ RAZZLEDAZZLER @ 24.03.2002. 18:32 ] @
... i POST se koristi kada uzimash informacije od korisnika.
Uglavnom, koristi POST ako imash malo vishe podataka, poshto GET ima ogranichenje.
Chim je neshto vishe od npr jedno-dva kratka podatka [tipa ime, prezime i sl] koristi POST ... narohito ako korisnik sam unosi neki text.
[ Mihailo @ 24.03.2002. 19:45 ] @
W3C (www.w3.org)

Using the get method allows the form submission to be contained completely in a URL. This can be advantageous in that it permits bookmarking in current browsers, but it also prevents form data from containing non-ASCII characters such as "é" and "©". As well, the amount of form data that can be handled by the get method is limited by the maximum length of the URL that the server and browser can process. To be safe, any form whose input might contain non-ASCII characters or more than 100 characters should use METHOD=post.

With a METHOD value of post, the form input is submitted as an HTTP POST request with the form data sent in the body of the request. Most current browsers are unable to bookmark POST requests, but POST does not entail the character encoding and length restrictions imposed by GET.
[ 01011011 @ 25.03.2002. 06:59 ] @
Hvala