php script for star rating in admin panel? -
php script for star rating in admin panel? -
i new php. have site have admin section.here want admin rate products having , rating should stored in database.
i don't have thought this. please help me examples.
on high level need do.
in database, add together new column:
alter table `products` add together column `star_rating` int(1) not null default 0;
store value user has clicked on, either 0 5.
on output, can output x stars such following:
<strong>rating:</strong> <?php echo str_repeat('<img src="/star.png" alt="*" />', $row['star_rating']) ?>
.. $row
mysql_fetch_assoc()
result select * products
.
this extremely basic , covered off in simplest of php/mysql tutorials, should larn language.
php
Comments
Post a Comment