Search for:
Code:
$sql = "INSERT INTO `accounts` (`Username`, `Password`, `IP`, `Email`, `State`) VALUES ('$user', '$pass', '$ip', '$email', '2')";
`accounts` is the table where your accounts are being stored, `Username` is the username they use to login, Password, is the password they type to login, IP can be removed if u do not have one, but if u have to remove that, remove the '$ip' below. The email ofc is email, and the State is the account type. So change these to how ever your source uses them when u create an account.