Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
5answers
557 views

PHP dynamic array index name

I want to pass a function the index value of an array – e.g [‘client_name’] – a first level value works because I can do $index = client_name; function arraything ($index) { return ...
0
votes
3answers
693 views

How can I stored dynamic NAME and VALUES for radio button in PHP for passing to another page?

This is multiple-choices based radio button. I have 5 questions and 4 multiple-choices for user to select. 5 questions are looping from my database and each question has 4 choices again looped from ...
0
votes
2answers
113 views

Assigning dynamic values with variables / constants in classes

Iv'e always been aware that you cannot set dynamic values to variables within a class structure, but is there any way around this? I have this interface: interface IUserPermissions { /* ...