I gave up trying to have one page fully interactive. See, the problem is, I have four different membership types at my website, and need it to behave differently for each membership. I found it a whole lot simpler to give up on exactly what I was doing before and simply made four environments in php plus an htm environment for members when they are not signed in or non members. I have some simple code now where the user signs in as the membership he registers with and it takes him into that environment. I was tedious to copy and paste each page into the five different environments, but it was worth it. Now I can freely add several different pages to each environment depending on the nature of their membership.
In any case, thank you guys so much for all your help. I will definitely post again if I run into any new problems.
Jeff
[EMAIL PROTECTED] wrote:
How about something like this?
<?php
echo ($_SESSION['auth'] != "yes" ?
"<p><a href="" / Signup</a></p>" :
"<p><a href=""> exit();
?>
Gary
www.posi7.com
----- Original Message -----
From: "jnoelcook" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Monday, May 29, 2006 01:39 PM
Subject: [webdev] [php_mysql] Question about Login / Signout...
All,
I am a newbie to php, and have many questions.
I am trying to create a link to appear on an HTML page that
shows: "Login / Signup" when not logged in, and: "Signout" when one
IS logged in.
I placed the following lines of code in my HTML text in the place
where I want the link to be.
<?php
if (@$_SESSION['auth'] = !"yes")
{
echo = "<p><a href=''>Login /
Signup</a></p>";
echo = "<p><a href=''>Signout</a></p>";
exit();
}
?>
However, when I go to this page, no link whatsoever appears. Could
someone provide the correct code for this command?
Thanks much!!!
Jeff
The php_mysql group is dedicated to learn more about the PHP/MySQL web database possibilities through group learning.
SPONSORED LINKS
American general life and accident insurance company American general life insurance company American general life American general mortgage American general life insurance Computer internet security
---------------------------------
YAHOO! GROUPS LINKS
Visit your group "php_mysql" on the web.
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
---------------------------------
---------------------------------
Do you Yahoo!?
Get on board. You're invited to try the new Yahoo! Mail Beta.
[Non-text portions of this message have been removed]
The php_mysql group is dedicated to learn more about the PHP/MySQL web database possibilities through group learning.
SPONSORED LINKS
| American general life and accident insurance company | American general life insurance company | American general life |
| American general mortgage | American general life insurance | Computer internet security |
YAHOO! GROUPS LINKS
- Visit your group "php_mysql" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
