11.04.2015, 14:09
Whenever you pass a string in mysql_format, use ' ' around %s and %e. Also it's recommended to use %e instead to escape the string directly.
Change:
to:
Change:
pawn Код:
... `Email`=%s ...
pawn Код:
... `Email`='%e' ...

