gszauer:
Nope! I don't think so.
First of all, I don't know where you "found" that code, but there must have been more to it than just those couple of lines.
The basic syntax for UPDATE starts with: UPDATE tablename.
So, since your table name is vexour, it would be UPDATE vexour.
Then you use SET and the column name you want to change.
So, in your case, yes you did get that part right. SET stars.
Then you have stars= to the variable $stars which is ok if the variable $stars is going to refer to the value you want stars to have or you could just enter the value that you want stars to have such as stars = 4.
Next you have your WHERE clause and, again that is ok if the variable $current is going to refer to the value you want title_track to have. This is the same as with stars, you could just use whatever the actual value of title_track is, like title_track = abcdef.
However, none of this is going to work unless you write PHP code to connect to MYSQL and Select the database that the table vexour is in.
It is also a good idea to run a select query on the database table to make sure the record you are about to change is the one you want to change.
Then after the UPDATE you should also include an If statement using mysql_affected_rows( ) to verify that the UPDATE did happen.
If you don't have a good book on PHP/MYSQL then it might be a good idea to go to the on-line manuals and do a little reading on updating databases.
Hope this help you at least a little bit.
Good Luck