|
Posted by John Meyer on 10/08/66 11:35
NotGiven wrote:
> I am new to patterns and want to learn how to implement the PAGE
> CONTROLLER model for a web site that has log-in and where the pages are
> dynamic database driven pages.
>
> I will have many questions along the way but one is:
> -- It looks like you use $_GET variables to provide instrucitons for the
> next action. Can you use $POST instead? Advatnages /disadvantages of
> either?
>
> Thanks.
Basic difference between the two: $_GET variables are appended to the end
of a URL, post variables are not. You can have a form as with a "get" or
"post" method.
[Back to original message]
|