Hello,
I've a PHP page where I've different links representing different albums.
What I want is, when user clicks on any album link he will b redirected to "images.php " where all images related with that album are displayed. I am using MySQL and image names are stored in images->image_name.
Plz tell me geniuses how to accomplish this task?
(I've set up relation between albums and images tables using album_id column. My database has two tables:
1- Albums - which consist of following fields (album_id, album_name)
2- Images - which consist of following fields (image_id, image_title, image_name, album_id) )
I've a PHP page where I've different links representing different albums.
What I want is, when user clicks on any album link he will b redirected to "images.php " where all images related with that album are displayed. I am using MySQL and image names are stored in images->image_name.
Plz tell me geniuses how to accomplish this task?
(I've set up relation between albums and images tables using album_id column. My database has two tables:
1- Albums - which consist of following fields (album_id, album_name)
2- Images - which consist of following fields (image_id, image_title, image_name, album_id) )
Comment