The question is a little confusing based on the title. Do you mean you want to see all the values for a single field regardless of entry or user id. For example, if you have 10 entries by 10 different users, you want to see the content for field A for all 10 entries. Is that correct?
If so, create a view to display the field and don't apply any filters or other constraints.
Yes @Victor Font, I'd like to have all field values in a php array or object programmatically, as I'm writing a code snippet. This is easy to be done visually with views but I'd like to store these values of a specific field in an array or object.
In that case you'll want to familiarize yourself with the FrmEntry (and similar) functions to get the entries from a form and do whatever you want with them. See https://formidableforms.com/knowledgebase/php-examples/ and https://formidable-masterminds.com/how-frmentrygetall-works/ to start
Please login or Register to submit your answer