Function and Strings
Hi all,
i try to get a string back from a function.
But i get a "tag mismatch Error".
Any Ideas how i solve my problem?
i try to get a string back from a function.
But i get a "tag mismatch Error".
PHP Code:
get_test()
{
new String:test[64];
test = "TERRORIST";
return test;
}
new String:result[64];
result = get_test();
Orignal From: Function and Strings
Post a Comment