Sure. You can do this:
$entry_id = FrmEntry::get_id_by_key($entry_key);
$entry = FrmEntry::getOne( $entry_id );
and then "$entry" will contain all the information
Turn on your error display (or look in your log file) to see what the full error is. That code is fine as is, though you have to set $entry_key at some point. Generally that means some sort of syntax error. Also, you'll want to do print_r($entry) or since it's an array of info.
PHP Parse error: syntax error, unexpected '$entry' (T_VARIABLE)How do I 'set' $entry_key ? Would it not be taken from the parameter in the ULR resultskey?
Ha! The error is because of the missing semicolon (;) at the end of the first line. I edited my previous response.
The value that you put into #entry_key can come from the URL via the $_REQUEST global variable or it can be passed in via the shortcode invocation, whichever works better for you.
Please login or Register to submit your answer