Drupal displays table data in a block with user interactions

I have a user table in my drupal database.

  • I save entries in this table using a form in a custom module. The administrator will add entries from this form. Fields are name, date, etc.

  • End users should now be able to view these records in front of the site in a block. It should display the name field of each entry and allow users to click on the name and perform operations such as voting for it.

I finished with the first task, how can I implement the second task?

+3
source share

All Articles