prajakta29 Posted December 15, 2011 Report Posted December 15, 2011 m new in jQuery's concept. actually i wanted to add a code to view images extracted from database but m nt getting the solution in php so m tryng to work on jQuery... I dont have any idea abt it...plss suggest me some code to view prev nxt images of a user from database....
webdevcloud Posted December 15, 2011 Report Posted December 15, 2011 Best solution I would suggest would be to go for a popular CMS like Joomla or Wordpress. There are dozens of great gallery components or plugins for each.
prajakta29 Posted December 15, 2011 Author Report Posted December 15, 2011 Best solution I would suggest would be to go for a popular CMS like Joomla or Wordpress. There are dozens of great gallery components or plugins for each. thanks for the suggestion...but the thing is i have very less tym to coverup ths topic so it will take lil bit more tym to implement zoomla n all in php codes... i got the code with small error. m posting a part of that code which is getting affected. $objectIndex = "PHT"; $whereclause = " WHERE RegID=".$regid; $otherclause = ""; $fields = "PhotoID, BlowUp, DisplayType, RegID"; $result_array = _getRows($objectIndex, $fields, $whereclause, $otherclause); $photoid_indx = 0; // ThumbNail, $thumbnail_indx = 1; $blowup_indx = 1; $disptype_indx = 2; $regid_indx = 3; if($regid) { $photo1=$result_array[$blowup_indx]; $aphotopath1 = "../photographs/".$result_array[$regid_indx][$blowup_indx]; $result_array[$blowup_indx]++; $photo2=$result_array[$blowup_indx]; $aphotopath2 = "../photographs/".$result_array[$regid_indx][$blowup_indx]; $result_array[$blowup_indx]++; $photo3=$result_array[$blowup_indx]; $aphotopath3 = "../photographs/".$result_array[$regid_indx][$blowup_indx]; $result_array[$blowup_indx]++; <div class="album" align ="center"> <h2 align="center">1</h2> <a href="<?php echo $aphotopath1 ?>"><img src="<?php echo $aphotopath1 ?>" alt="" /></a> </div> <div class="album"> <h2 align="center">2</h2> <a href="<?php echo $aphotopath2 ?>"><img src="<?php echo $aphotopath2 ?>" alt="" /></a> </div> <div class="album"> <h2 align="center">3</h2> <a href="<?php echo $aphotopath3 ?>"><img src="<?php echo $aphotopath3 ?>" alt="" /></a> </div> now the thing happening is m getting the first image only for all images like 2,3,4.... i have stored images in blowup column in mysql(wamp) database the actual thing that has to take place is each tym blowup should b increased by one and will display next image for same regId.... i hope m putting it in rite way...jst tell me whr shud i correct
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now