how can i hide some of my context until a user is register, then he/she will be able to see it. thanks.
Announcement
Collapse
No announcement yet.
Hiding page until user is registered
Collapse
X
-
Create row in where you have your user details called registered and have it be a tiny int. Now you would do something like this
PHP Code:
if ($row["registered"] == "1") {
//display content
} else {
echo "Please register to view content";
}
Their are many other ways to do this with a session but this is just a small example hope it helps
Comment