Hi.
I have the submission table of a simple form as a DB. How can I display on a page the number of records (rows) in that DB?
Let’s say that 5 people submitted that form so I want the text element to show “5”.
Thank you!
Hi.
I have the submission table of a simple form as a DB. How can I display on a page the number of records (rows) in that DB?
Let’s say that 5 people submitted that form so I want the text element to show “5”.
Thank you!
Count the record:
https://www.wix.com/velo/reference/wix-data/wixdataquery/count
and display the number:
$w(“#text1”).text = result.toString();
Thank you!