Current location: Hot Scripts Forums » Programming Languages » PHP » one click user rating system


one click user rating system

Reply
  #1 (permalink)  
Old 07-14-05, 06:57 AM
jaishalg jaishalg is offline
Newbie Coder
 
Join Date: May 2004
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
one click user rating system

Hey all
i m develping a site.
now i want to put a feature like
"one click user rating system"
i have no idea how to do this, can anyone guide me,
please
i done know how to do this
and the user can not vote again "cookie handling also"

how to do this??? can anyone help me??
Reply With Quote
  #2 (permalink)  
Old 07-14-05, 07:20 AM
FiRe FiRe is offline
Code Guru
 
Join Date: Oct 2004
Location: UK
Posts: 801
Thanks: 0
Thanked 0 Times in 0 Posts
Create the radio buttons with onclick events...

Code:
<input type="radio" name="rating" value="1" onclick="rate('1');"> 1
<input type="radio" name="rating" value="2" onclick="rate('2');"> 2
<input type="radio" name="rating" value="3" onclick="rate('3');"> 3
etc...
Then the function in javascript:

Code:
function rate(num) {
window.location.href = "rating.php?rate=" + num;
}
Then in rating.php use $_GET to retrieve the rate= in the URL, and then update a database (there are hundreds of example of these on this forum)...
__________________
Alexa Share <-- Trade virtual shares in websites with this online game.

codR.us <-- Submit and vote for your favorite code snippets with codR.us.

XEWeb.net <-- The ultimate PHP resource network.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
one click user rating system jaishalg JavaScript 1 07-15-05 08:07 AM
[Hotscripts] Visitor Rating System eristoff General HotScripts Site Discussion 10 02-03-05 11:02 AM
2 flash websites for sale metamorph General Advertisements 5 01-09-05 10:03 PM
Request info on rating and user comments system used on your website gmb1994 Script Requests 0 11-16-04 11:37 AM
Need Epinions-lite system in PHP & MYSQL wali001 Job Offers & Assistance 4 01-12-04 06:02 AM


All times are GMT -5. The time now is 06:55 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.