13.09.2015, 23:24
PHP код:
new unban;
cache_get_field_content(0, "unban", unban);
new unban;
cache_get_field_content(0, "unban", unban);
Php
new unban = cache_get_field_content_int(0, "unban");
new unban[sizehere]; cache_get_field_content(0, "unban", unban);
new result[128]; // variable which temporarily stores the value as a string7 new unban; // where we are storing our "unban" value permanently cache_get_field_content(0, "unban", result); unban = strval(result); // We pass the result through strval which returns our value as an integer and store.