the reason i asked was that i was looking through the apache log for my as-yet-unlaunched site and found a bunch of 302 codes. i am using some header('location...') stuff in there and was just wondering if using that results in 302s in my log.
i'm guessing (still) that the answer is yes.
EDIT: I verified that header() does in fact create 302 entries. I'm wondering if anything else can??
thanks weedpacket for the official link. will read that. all 100 pages or so eventually.
ultimately, i'm using the header('location...') stuff for some multi-page forms. users are taking a test....when they click 'submit' on a given page, it submits to itself of data validation. if the data looks good, i use header() to redirect to the next page of the test.
when the last page is completed, i use header() to prevent the user from hitting 'refresh' and double-submitting the test and cluttering up my database and ruining everything.
ultimately, i would not want these test pages to show up in any kind of search engine. i'm guessing that they generally won't because i'm using the header() redirects to get to them rather than any kind of specific link, so search response to these particular codes is pretty much irrelevant. a search engine should never be able to complete one of the tests because you have to be logged in to do so.