24.06.2013, 09:42
Usefull stock:
instead of typing mysql_real_escape_string all the time
instead of typing mysql_real_escape_string all the time
pawn Code:
stock EscapeString(const string[])
{
new escpass[128];
mysql_real_escape_string(string, escpass);
return escpass;
}