Jump to content

Recommended Posts

Posted

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....

Posted

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.

Posted

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...