I want to have some optional fields for the user profiles.
So what I want is for example:
On the edit profile page to be able to enter a phone number.
But for this to only be displayed on the profile page if there is a value in the database.
If its empty nothing should show.
And if there is a value then for both the phone number and a label 'phone' to show on the profile page.
What do I need for this?
User Profile - edit profile and profile page help
Re: User Profile - edit profile and profile page help
I would just do it as normal but then on the profile page add a check to see if there is a value.
if (!!empty($info['about_me'])){ ?> <div> <h3>About Me</h3> <p><?php echo $info['about_me']; ?></p> </div> <?php }for example. You will also need to make sure you do not require the field to have a value on the edit page.
Re: User Profile - edit profile and profile page help
Thanks. Got it working.