Im using drupal and just want to create a field on a node for users to submit a number.
Ive created a module. Through the install file ive created a table in mysql and added uid, nid, and amount columns.
Now I just want a field on the node page, node/%. Not on the node/%/edit pages.
So users viewing the node can specify the value then the nid, uid and amount will be sent.
Ive tried hook form alter and hook node api. But all the tutorials i can find are for changing field values, or adding fields to the edit page.
Thanks for any help or any starting points