Results 1 to 2 of 2

Thread: Star rating script

  1. #1
    Join Date
    Jul 2010
    Posts
    14

    Question Star rating script

    I am trying to implement a Star rating script to a page. The thing is, I have multiple items I want to make ratable all within the same page. How can I add multiple star systems to one page?

  2. #2
    Join Date
    Jul 2010
    Posts
    14
    I would even be content using a form. Say I use the below form for each item on the page that I want users to rate, would I then need to create a different php file to store each individual rating?

    <form method="post" action="store-rating.php">
    <input type="hidden" name="item_id" value="cat photo 1">
    <input type="select" name="rating">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    </select>
    <input type="submit" value="Rate This">
    </form>


    So, in other words, would each individual form have a different action, i.e.

    action="store-rating.php"
    action="store-rating1.php"
    action="store-rating2.php"
    action="store-rating3.php"

    etc.


    ???

Similar Threads

  1. How to make my own rating script: Live basic
    By ITGuy in forum General Questions
    Replies: 0
    Last Post: 01 Feb 2007, 07:55 PM
  2. searching for a good rating script...
    By proverbs in forum Client & Server Side Scripting (PHP, ASP, JavaScript)
    Replies: 0
    Last Post: 14 Dec 2005, 01:58 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •