-
Hi LeonidSWhile that field and others I added in the form via Studio-Forms, I remember adding it earlier via phpmyadmin.Wasn't it necessary to do that? When adding a field in a form, via Studio-Forms, that field is automatically created in the table in the database?Thanks.
-
Thanks LeonidS, I understand now.Anyway the query is the same. That is, the UNA platform works correctly, I can correctly view the information selected by the person in the form. No problem with this.My question is how I have to do (running my own software) to translate that value saved in the bigint field to the values selected by a person, that is, how does UNA do it?Thanks.
-
The values are stored in the database field as a binary number. In inc/classes/BxDolForm.php, you will find the passSet function that takes the array of values and creates the number that is stored. There is also the displaySet function that takes the stored database value and translates it into the original array of values.
-
Thank you Jerome Mingo It's what I needed to know.