11.01.2016, 00:16
Sorry its me again, I have been spamming forums tonight for help (sorry for that its Just I suck)
Well this gives me no results. Almost none....
Well this gives me no results. Almost none....
PHP код:
new query[256];
mysql_format(mysql, query, sizeof(query),"SELECT `Reason`, `Date` FROM `crimes` WHERE `Name`='%e'",somename);
mysql_tquery(mysql, query, "OnCrimeLoad");
PHP код:
forward OnCrimeLoad();
public OnCrimeLoad()
{
new reason[128],SomeDate,rows = cache_num_rows(),string[128],crimecount;
for(new i=0; i < rows; i++)
{
cache_get_field_content(i, "Reason", reason);
format(reason, sizeof(string), string);
SomeDate = cache_get_field_content_int(i, "Date");
printf("%s|%d", string, SomeDate);
crimecount++;
}
printf("Test hi %i",crimecount);
return 1;
}