Topic awaiting preservation: _POST _GET (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Lebanon |
posted 05-30-2003 11:24
Hello, |
Paranoid (IV) Inmate From: Sthlm, Sweden |
posted 05-30-2003 11:53
Seems like this might be what you are after: |
Paranoid (IV) Inmate From: Lebanon |
posted 05-30-2003 12:00
Hello, |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 05-30-2003 21:33
actually, I'd beat you if you used request in a project I was responsible for. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 05-31-2003 14:32
Yeah wouldn't that leave you open to people hacking your POST variables using GET? |
Paranoid (IV) Inmate From: New Jersey, USA |
posted 05-31-2003 21:54
I've written admin code for a few sites that allow the admin to get to select entries to edit via and ahref link on one page, but also access that same admin page by filling in a form that feeds to the same script which makes some of the same variables come in either way... POST or GET depending on where they came from. |
Paranoid (IV) Inmate From: Den Haag, Netherlands |
posted 06-03-2003 10:12
Butcher ... Look at Session Management using PHP ... you'll find chapters in every book with a title very much like that, and thats how you should be passing data around inside a single users session. The form can either post the data initially, or you can use some javascript to initialise the session variables directly from the form ... |