only image path displays

A

Anonymous

Guest
Hello Helix
On this case while you clicking a image in gallery which leads to the photo displaying page along with comments. So you have to pass an value to this page in URL like below
Code:
<a href="phototemplate.php?photoid=1"><img src="image.jpg" /></a>
In phototemplate.php page get the value from URL and write an query to fetch the image as well as comments
Code:
$query="SELECT * FROM photo where id=".$_REQUEST['photoid']."";
Hope this help you..For more details you can visit http://www.webinfopedia.com
Thank You
 
well this is a easy task you need to display image info along with comment associated with it make url for the image template page and pass some id DB unique info along with that will help you getting info from the DB.
I think this will help.
If have any problem on PHP kindly make a visit at php-mechanic.blogspot.com.
 
Back
Top