Rating system...

This is a discussion on "Rating system..." within the Classic ASP section. This forum, and the thread "Rating system... are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Classic ASP

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old May 20th, 2004, 19:39
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Rating system...

Ok, here's the thing, I Am creating a rating system for a site, where you can pick a band, listen to some samples, read their bio, and then rate them on a scale of 1-5 . 1 being sucky and 5 being good . . Well to do this, would I need to just set the code to add each row together then divide by total # of rows? Would that work to get me an average? Or is there a better/easier way of doing this? Just trying to save me a little time.

  #2 (permalink)  
Old May 21st, 2004, 09:18
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
Well if you want to save time, just go to APSIN.com and search for a rating system which someone else has already written!
  #3 (permalink)  
Old May 22nd, 2004, 12:36
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,650
Blog Entries: 1
Thanks: 0
Thanked 4 Times in 4 Posts
smokie's option is fine, but if you want to make it yourself design a table that will store all the scores as different records:
eg.
band - score
'linkin park' - 5
and so on...

then use the AVG SQL statement to retrieve the average score
something like: SELECT AVG(score) AS average_score FROM Feedback_Table WHERE band='band name'
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Closed Thread

Tags
rating, system

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Spinal007 - Anyone recommend a good rating/star rating script? sing2trees PHP Forum 17 Jun 8th, 2008 21:23
Rounding & Rating System. Jack Franklin PHP Forum 4 Feb 20th, 2008 18:12
Please help, 2 way feedback rating system marie2007 PHP Forum 0 Sep 13th, 2007 01:25
Poll/Rating System lexxweb JavaScript Forum 1 Dec 9th, 2006 21:27


All times are GMT. The time now is 08:01.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43