drop down custom field
Hello everyone, Just asking if someone could tell me how this form code would be, I got this so far, I want this custom field to be shown in registration page, and so then the user could change its value when entering to edit his profile, and the result of all of this to be shown in the "sidebar user" and the "ad-user"
This is what i got in the template and login-registration file
<th><label for="display_name"><?php _e('Country','cp') ?></label></th>
<td>
<form method="post" action="<?php echo $country;?>">
<select name="country">
<option value="USA">USA</option>
<option value="CANADA">CANADA</option>
<option value="MEX">MEXICO</option></select>
<input type="hidden" value="hidden" name="hidden">
</form>
</td>
AND this is what i got in the sidebars files
[*]<span><?php _e('Country:','cp');?></span> <?php echo get_the_author_meta('country'); ?>
I just cannot make this to saved the option selected to appear in those files...