W
|
wpl 9/1/2022 |
Hi J., maybe you could give "array_keys($values)" a try. Regards |
![]() |
fhumanes 9/1/2022 |
Hello, Check this example. $values and $oldvalues, are associative arrays. https://flexiple.com/php/php-foreach/ In the example you will find this code, which is the one you need. <?php Cheers, |
K
|
kohle author 9/2/2022 |
Hi, I am back here late, because I didnt receive an email about the posts. Thanks for the answers but its not what I am looking for. Maybe I explain it different : One way is : $fieldnames = array("name", "email", "age" ,"gender" ); The problem is I need to know the fieldnames and have to put them into an array, I am looking for something like to receive the names : $fieldnames = rowData.fields ; (retrieving the fieldnames in the Afterupdate event) |