I need to pass a post variable to signup.php but need it to be stored in the database as a custom field - userkey. Any ideas on how to acheive this? Thanks much as my site integration will require this. Andrew Riell
Add the field in amember, and set it to be visible in signup. In the signup.html remove the section that shows additional fields. Add this to signup .php: if ($_REQUEST['yourfield'] == "") { $_REQUEST['yourfield'] = $_REQUEST['yourfield']; } and this to signup.html in the form: <input type="hidden" name="yourfield" value="{$smarty.request.yourfield|escape}" /> David