Could you all give me an idea on how can i hide a specific value from an unregisted user? But once a user logins, that value should be visible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use sessions. Once user logs in, set a flag or user id in $_SESSION array. Later, you can check this flag and generate different output for registered/unregistered user. I.e.