1
Hello
I am new to XOOPS and am modifying the registration form to include additional information such as first and last names, address, phone, fax, etc.
I have added the additional fields in register.php and registerform.php by duplicating and renaming existing fields (see code samples below) but have not found the file with the database calls so that I can ensure that the new info gets stored in the db.
Can someone point me in the right direction?
thanks
LB
------
Samples of changed code:
register.php
- echo "First Name: ".$myts->makeTboxData4Preview($firstname)."
";
- input type='hidden' name='firstname' value='".$myts->makeTboxData4PreviewInForm($firstname)."'
registerform.php
- $reg_form->addElement(new XoopsFormText("First Name", "firstname", 26, 25, $firstname), true);