Hi!
Simple question.
How do you read all entries in nVault.
If you don't understand, think of each key as a number.
This is how I would look up and fetch 10 entries:
PHP Code:
new data[128], key[8];
for(new i = 1; i <= 10; i++)
{
str_to_num(i, key, 7);
nvault_get(vault, key, data, 127);
}
As you can see I specified 10 in the loop.
But how do I get how much entries there is in the vault?
__________________