How can i save and load a string?
Example.
PHP Code:
new Var1[32], Var2[32]
Var1[id] = // is a string...
Var2[id] = // too is a string...
// Save...
public Save(id)
{
fvault_set_data(g_fvault, Var1[id], Var2[id])
}
// Load...
public Load(id)
{
// how can i here load the string? i will try with parse and copy, but i cant :'(
}
ty all ;)