> Thanks for the tips.
>
> After clicking http://www.mydomain.com/processForm.php?id=<some id> is
> 'id'
> a variable containing 'some id'.  Can I access that by '$id'
>
> I am just trying to figure out how to write the SELECT statement for that
> script.  I am guessing, but I would do:
>     "SELECT * FROM temp_users WHERE ID=$id"
>
> Thanks again.
>
> Aaron
>

More like:

"SELECT * FROM temp_users WHERE ID=\"".$_GET["id"]."\"";

Use $_GET to access variables from the url.

-- 
--Matthew Sims
--<http://killermookie.org>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to