• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

fun with pics.bbzzdd.com

notfred

Lifer
select
avg(poll.vote) as score,
poll.picture_key,
picture.filename,
picture.filesize,
picture.views,
picture.width,
picture.height,
date_format(picture.date_posted, '%m/%d/%y %r') as date,
member.username
from
poll, picture, member
where
poll.picture_key = picture.picture_key and
member.member_key = picture.member_key and
picture.public = 'Y' and
picture.date_posted > date_sub(now(), interval 7 day)
group by
poll.picture_key
order by
score desc limit 20

Brought to you by the 'pics?' development team 😛.
 
Originally posted by: Czar
seems we are getting a voting system 😀

or I think, thats sql way beyond what I know

I just finished it last night, working on the new gallery views now.
 
Originally posted by: DnaJ
Originally posted by: Czar
seems we are getting a voting system 😀

or I think, thats sql way beyond what I know

I just finished it last night, working on the new gallery views now.

sweet 😀
great job guys, looking forward to seeing it in action

any other features planned?
 
Originally posted by: Czar
Originally posted by: DnaJ
Originally posted by: Czar
seems we are getting a voting system 😀

or I think, thats sql way beyond what I know

I just finished it last night, working on the new gallery views now.

sweet 😀
great job guys, looking forward to seeing it in action

any other features planned?

Agreed. :thumbsup:
 
Originally posted by: Czar
Originally posted by: DnaJ
Originally posted by: Czar
seems we are getting a voting system 😀

or I think, thats sql way beyond what I know

I just finished it last night, working on the new gallery views now.

sweet 😀
great job guys, looking forward to seeing it in action

any other features planned?

Just a few..
 
Back
Top