Hi guys, This is a newb question but when I see sites like www.whatever.com/code.php?id=3 how does the code then reference the id, is it available in the code immediatley as a variable?
Can I <?php echo $id ?> and get '3'?
Never mind. Figured it out $_GET['id']
Yup - that'd be the way, using the superglobals (read: [man]variables.predefined[/man]).
Don't forget to mark this thread resolved (if it is).