26.11.2017, 04:46
Because you're using cache_get_field_content_int incorrectly.
Example usage:
cache_get_field_content_int has 3 arguments. The 3rd one is for the connection handle, not the variable to store it in.
Example usage:
PHP код:
new int_dest = cache_get_field_content_int(2, "money");
printf("The value in the third row and in the field 'money' is '%d'.", int_dest);