FrostLee Posted May 15, 2013 Share Posted May 15, 2013 Проблема с запросом. Не могу сделать проверку на существует ли аккаунт. function userRegister(user, pass) local result = mysql_query(db, "SELECT * FROM user WHERE name='"..mysql_escape_string(db, user).."'") if not result then mysql_query(db, "INSERT INTO user (name, password) VALUES ('"..mysql_escape_string(db, user).."','"..mysql_escape_string(db, md5(pass)).."')") outputChatBox("#ff7e00- Вы успешно зарегистрировались, приятно игры!", getRootElement(), 255, 255 ,255, true) mysql_free_result() else outputChatBox("Аккаунт таким именем уже есть!") end mysql_free_result() end Link to comment
Flaker Posted May 15, 2013 Share Posted May 15, 2013 Кол-во полученных строк проверь. #result - длина массива result. Link to comment
FrostLee Posted May 15, 2013 Author Share Posted May 15, 2013 Всё разобрался. Спасибо. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now