I'm trying to get the name of the files after submitting the form:
add_action('gform_after_submission_5', function ($entry, $form) {
$file_url = $entry['5'];
$filename = basename($file_url);
}, 10, 2);
When giving a var_dump $...
asked by
25.04.2016 / 21:29