Hi friends,
I need to implement the "video rating" option in my website.
Its some thing like "*****" should be used to rate the video.
Any idea how to implement this feature ?
Thanks,
Satees
Hi friends,
I need to implement the "video rating" option in my website.
Its some thing like "*****" should be used to rate the video.
Any idea how to implement this feature ?
Thanks,
Satees
uh, hyperlinks with values assigned?
eg:
<a href="something.php?rate=1">*</a>
<a href="something.php?rate=2">*</a>
<a href="something.php?rate=3">*</a>
<a href="something.php?rate=4">*</a>
<a href="something.php?rate=5">*</a>
then when the page loads. check the value of rate and do with it what you will.
ie:
$rate = $_GET['rate'];
...
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.