update
/* Use this for older versions of mysql (though its not worth it, since performance is bad)...
name_exists = mysql_fetch_array(mysql_query("SELECT name FROM position WHERE name='
name'")); if (
name_exists) mysql_query("UPDATE position SET x='
x', y='
y' WHERE name='
name'"); else mysql_query("INSERT INTO position (x,y,name) VALUES ('
x','
y','
name')"); */