10-28-2007, 03:43 PM
|
#6 (permalink)
|
|
The Contributor
Join Date: Oct 2007
Location: US
Posts: 66
Thanks: 19
|
You make a master page, then you can use the PHP $_GET function to get the data.
If you have yoursite.com/view.php?pallete=143, you would then $_GET the pallete number ($pallette = $_GET["pallete"]; ) and then select the stuff from the database, where the ID is equal to $pallette.
Thats a very simple explanation of it.
|
|
|