Description
Retrieves the meta value of the specified meta key from the Entry Meta table.
Returns false if the meta key is not found.
Usage
$meta_value = gform_get_meta( $entry_id, $meta_key );
Parameters
Examples
This example retrieves the referrer information stored in the entry meta and echos it to the screen.
function display_referrer( $entry_id ) { $referrer = gform_get_meta( $entry_id, 'referrer' ); echo $referrer; }
Source Code
This function is located in forms_model.php