Hi RZ,
I need a sql code to remove all credits to a new value of the users via database.
Thanks in advance.
Printable View
Hi RZ,
I need a sql code to remove all credits to a new value of the users via database.
Thanks in advance.
Cheer's should work..PHP Code:UPDATE Users
SET Credits='0'
Well, He asked for that soo... Yeah
I don't know your table names and other stuff but:
then add a simple form to submit a user id.Code:$YOURSQLSHITHERE = "UPDATE Users SET Credits='0' WHERE id = '".$_POST['id']."'";