I have variable User$id = true, where $id is a user id from my database.
And i Have
$User6 = true
$User15 = true
all value is that same but I change name variables.
Then I send this to browser (cookie).
On next page I want check this variable but I can't use User[$id] becuse this is not a variables $User6.
I want check this value
if ($(User[$id]) == true ){echo "OK"};
But this is not working
I'm sorry for my English
Mariusz