25.02.2016, 20:34
PHP код:
cache_get_data(rows, fields, g_iHandle);
PHP код:
cache_get_field_content(rows, "Character", sahipIsim, g_iHandle, sizeof(sahipIsim));
But the first row in a result-set is row 0.
You're processing a non-existing row.
PHP код:
cache_get_field_content(rows - 1, "Character", sahipIsim, g_iHandle, sizeof(sahipIsim));
PHP код:
cache_get_field_content(0, "Character", sahipIsim, g_iHandle, sizeof(sahipIsim));

