i am running an uploading website, and want to keep track of uploads....
i use: (uc is upload count)
Username Password uc
how do i add to the uc value in my MySQL table?
please answer this question🙁
$sql = " UPDATE table SET uc=uc+1 WHERE Username = '$username' "; /// sqlQuery() does not exist $result = sqlQuery( $sql );
read more at: http://www.mysql.com/doc/en/UPDATE.html
they have a nice example there for you
thanks 🙂 !