ok, so Im using the code:
function updateUserField($table, $username, $field, $value){
$q = "UPDATE $table SET $field = $value WHERE username = $username";
return mysql_query($q, $this->connection);
}
But the problem is that it will only update numbers into the database but when I try to...