Okay, I have a script someone was kind enough to make me, and there is one small detail I need to change.
I want it to update in the table members (Where the username, password, points, and challenges are stored). How would I do this?
Tyvm
<?PHP
$conn = mysql_connect("host","user","pwd");
mysql_select_db("memoryx",$conn);
$sql = "UPDATE info SET point = points + $yy, challenges = challenges + $nn
WHERE username = '$user' AND password = '$pass' ";
mysql_query($sql);
?>