How can the landing page for all members be changed from index.php to say about_us.php ???
I don't want to use index.php and nor a redirect for logged-in members.
Please help!
Rich
How can the landing page for all members be changed from index.php to say about_us.php ??? I don't want to use index.php and nor a redirect for logged-in members.
Please help!
Rich This is my signature, there are many like it but this one is mine... |
Anyone??? This is my signature, there are many like it but this one is mine... |
Put this in the index.php just after check_logged() if(!isMember()) { header(Location: about_us.php); } so much to do.... |
Thanks bud This is my signature, there are many like it but this one is mine... |