Hi,

Can someone give me a small example how to edit a row with an id number of say 8 and add one to a field called views?

Code:
$res = mysql_db_query ("dammitu_music","insert into 'm_rev' ('views') Values('".$row["views"] + 1."') where id='$id'");
This causes a parse error

Why?