table_before_insert
Posted: 2020-07-19 16:58
Hello. How would I print the results out to screen from function research_before_insert(&$data, $memberInfo, &$args) - to see what variables are in play in $data.?
Thanks
Thanks
A place where AppGini users can exchange ideas and help each other.
https://forums.appgini.com:443/phpbb/
https://forums.appgini.com:443/phpbb/viewtopic.php?f=7&t=3784
Code: Select all
echo '<pre>';
var_dump($data);
echo '</pre>';
exit();
Code: Select all
echo '<pre>';
print_r($data);
echo '</pre>';
exit();