Hi, I have a voting system in which values are stored in a database for each voted item. Once in a while I want to be able to reset all the values to zero. How do I do this without having to modify each value in phpmyadmin?
Thanks
Ant
sorry, ignore this post I should have really applied my brain before posting, i just used:
$num = 0; mysql_query("UPDATE links SET points='$num' WHERE points>='$num'");