I did a select with an if while loop to display information from the database.
The below displays the url path with page.php?id=row['id']
<a href="<?php echo ''.URL_PATH.page.''; ?>.php?<?php echo "id=$id"; ?>">GO</a>
When I go to www.mysite.com/page.php?id=someid How do I get information from someid to display the row that someid is located in the database?
For example I have a picture and description field in mysql. How do I reference that to someid to display the picture and description in someid row?