Hi, I generated one custom html file which is having one text field where user has to enter id and one submit button.
I have to use it in following manner: 1. User has to enter the id and press the submit button 2. after pressing submit button, id value has to be validated in xyz table. 3. first it has to validate whether entered id is available in xyz table or not, if not available then it has to notify the user about it 4. if id is available in xyz table then it will fetch the record of id from xyz table and insert it to another table called abc table. problem facing: I have to add this html to my web2py project and achieve the above functionality , Can anybody help me to provide the solution how to use custom html and database interaction with it? --

