Aug 15th, 2016, 11:54 PM
I feel like I might be missing something obvious here, but does anyone know a simple way to get multiple submissions into a PHP array?
For example, I am able to load individual submissions like:
But I want to load all submissions into an array, "where the keys are the database column names and the values are the actual values in the field, directly from the database".
I'm not even sure where to start on this, any help would be greatly appreciated.
-1F380.2615
For example, I am able to load individual submissions like:
PHP Code:
$submission_info = ft_api_get_submission(2, 550);
echo $submission_info["first_name"];
echo $submission_info["last_name"];
But I want to load all submissions into an array, "where the keys are the database column names and the values are the actual values in the field, directly from the database".
I'm not even sure where to start on this, any help would be greatly appreciated.
-1F380.2615