11.04.2017, 19:42
error 035: argument type mismatch (argument 1)
Code:
Code:
Код:
CheckAccountExists(account[])
{
new string[128];
format(string, sizeof(string), "SELECT * FROM Users WHERE Name = '%s'", account);
mysql_query(string); // This line
mysql_store_result();
new value;
value = mysql_num_rows();
mysql_free_result();
return value;
}

