I have a field dbscore in my database and it it an array of 5(5 level). lets say i have a new score for level 3. I want to update that score in the database for that particular level. the code below is updating the values but i think it's not correct since the dbscore is an array. Can someone help?
$score is my new score.
mysql_query("UPDATE score SET dbscore='$score' WHERE name='$name'");