Hiding Admin Link

Hiding Admin Link

am 01.05.2009 04:29:18 von Joey Hendricks

------=_NextPart_000_005B_01C9C9DA.B84E6A10
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hello,
I am very new at PHP so I will try to explain my question the best I =
can. I was wondering if there was a way to have a link show only to the =
owner of the site? Like having a "Admin" link for editing posts, but =
hidden to all users except the owner. Thank you very much for your time!!
------=_NextPart_000_005B_01C9C9DA.B84E6A10--

Re: Hiding Admin Link

am 01.05.2009 09:26:27 von kurokawa

--000e0cd56b080b2b4e0468d4bb9d
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

Easy way to do it is if you use a MySQL database to store it. Do
$username = (name of user);
$admin = mysql_query( "SELECT * FROM usertable WHERE user='$username'" );
if( $admin->admin )
{
print ""
}

$username --> variable to hold the name of the user.
$admin --> query to obtain the database row for that user
if() --> checks to see if the "admin status" column of the database is set
to true, if so it prints admin link.

On Thu, Apr 30, 2009 at 9:29 PM, Joey Hendricks
wrote:

> Hello,
> I am very new at PHP so I will try to explain my question the best I can. I
> was wondering if there was a way to have a link show only to the owner of
> the site? Like having a "Admin" link for editing posts, but hidden to all
> users except the owner. Thank you very much for your time!!

--000e0cd56b080b2b4e0468d4bb9d--

Re: Hiding Admin Link

am 01.05.2009 14:01:37 von Harvey

You can start by creating a login system
http://www.phpeasystep.com/workshopview.php?id=6
Then you can do an if/then statement to show the link only to people who
have logged in...


On 4/30/2009 10:29 PM, Joey Hendricks wrote:
> Hello,
> I am very new at PHP so I will try to explain my question the best I can. I was wondering if there was a way to have a link show only to the owner of the site? Like having a "Admin" link for editing posts, but hidden to all users except the owner. Thank you very much for your time!!
>

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php