30.12.2011, 16:46
Yer i seem to have got the understanding of mysql,but now i have forgotten how to use pawno
Nero,in case you where wondering what 'strmatch' was used for.....
it is surposed to check 2 string to see if they match(i think anyways,but doesnt work very well for me,but thats just me)
Nero,in case you where wondering what 'strmatch' was used for.....
Code:
stock strmatch(const String1[], const String2[]){ if ((strcmp(String1, String2, true, strlen(String2)) == 0) && (strlen(String2) == strlen(String1))){ return true;} else{ return false;}}