09.08.2009, 14:04
Try replacing the string with this one:
Table names should not have quotes, and you had made 2 strings:
pawn Код:
"INSERT INTO bans (Name, Reason, Admin, IP) VALUES('%s','%s','%s','%s')"
pawn Код:
"This is a string, inside quotes "no string here" another string here"
"INSERT INTO `"bans"` (Name, Reason, Admin, IP) VALUES ('%s','%s','%s','%s')"
/* "bans" is like "no string here" in the first example, it is outside the quotes */