> It might also be worth noting that the form's method
must be "get", not
> "post" for this to all work correctly.
Not in the context of my reply, though. Based on the original
post (which
is not completely clear), the form page LOADS with the $_GET,
so I assumed
that a variable was being passed to it, which was then
relayed to the
processing page. I didn't think of the alternate
interpretation that you
mention.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Gary White" <reply@newsgroup.please> wrote in message
news:m7qtk3dbo771mr5t2u56qj1985jfsqnqru@4ax.com...
> On Thu, 29 Nov 2007 10:27:37 -0500, "Murray *ACE*"
> <forums@HAHAgreat-web-sights.com> wrote:
>
>>That's just a way of passing a variable to a page.
Let's assume that the
>>form page is loaded using a URL like this -
>>
>>
http://www.example.com/yourformpage.php?ref=whatever
>>
>>When the form page loads, it parses the ref variable
from the link, so now
>>$ref has the value "whatever".
>
> Just in case someone were to read this message out of
context, it might
> be more correct to say that $_GET['ref'] contains the
value "whatever"
> and that the code $ref=$_GET['ref'] copies that into the
$ref variable.
>
>
>>so that when the form is processed by
details_process.php, that process
>>page
>>can act according to the value of the $ref variable,
carried through from
>>the page calling the form, to the form, then to the
page processing the
>>form.
>
> It might also be worth noting that the form's method
must be "get", not
> "post" for this to all work correctly.
>
> Gary