Modify the guestbook module or build a custom module?
Jamroom Developers
Better to make your own custom module. They're not that difficult to build and all follow the same basic structure, so once you know how to build a simple one like your thinking about you'll see that you can build any other one fairly easily.
You'll need:
* an index.php file to hold your create and update views
* an include.php file to hold your modules _init() function
* a schema.php file to initiate the datastore
Then depending on where you want the output to come out, maybe
* a /templates/item_index.tpl (to show a list of them on a profile index)
* a /templates/item_list.tpl (to show what they look like when called in a list by jrCore_list )
* a /templates/item_detail.tpl (to show them individually on their own page.)