Hi,
I have built a form (name, description, count). So the user can enter a new entrie. This will be saved in a dictionary like
- menucount = 2
- 1_name = value1
- 1_desc = value2
- 2_name = value3
- 2_desc = value 4
- and so on..
The menucount will be increased with each new entrie. Then the key will be set to "menucount&"_name".
Now I want to fetch all names (1_name; 2_name; etc.) from the dictionary, but I don't know how to fetch them.
Thanks for any help!