12.08.2012, 20:34
(
Последний раз редактировалось phillip875; 12.08.2012 в 20:36.
Причина: Fixed an error
)
Try this:
CHANGED!
pawn Код:
stock mysql_GetString(Table[], Field[], Where[], Is[])
{
new query[128], Get[128];
format(query, 128, "SELECT * FROM `%s` WHERE `%s` = '%s'", Table, Where, Is);
while(mysql_fetch_row_format(query,"|"))
{
mysql_fetch_field_row(Get,field);
}
return Get;
}