Something Big? Mabey

7 posts Page 1 of 1
Contributors
User avatar
alex6848
VIP - Donator
VIP - Donator
Posts: 201
Joined: Sat Jan 16, 2010 10:26 pm

Something Big? Mabey
alex6848
So I am using the micro login system on my website and would like to know if I could do something like this:
Code: Select all
If <?php echo $_SESSION['userName']; ?> = alex 
then <p>your logos</p>
So what i would want it to do would to get the username and if its some1s username for ex alex it would post certain text in html or php.

Thanks in advance! lmao;
Alex
Free Facebook Page Likes - http://fbliker.tk/?ref=gillis
User avatar
CodenStuff
Site Admin
Site Admin
Posts: 4389
Joined: Tue Aug 04, 2009 1:47 am

Re: Something Big? Mabey
CodenStuff
Hello,

Try something like:
Code: Select all
if $_SESSION['userName'] == "alex" 
{ 
<p>your logos</p>
}
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: Something Big? Mabey
mandai
HTML does not belong in a PHP statement
Use echo for that.
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Something Big? Mabey
Lewis
What mandai is saying, If you just try and put html code there it is going to error, Use this code:
<?php
if $_SESSION['userName'] == "alex"
{
echo '<p>your logos</p>'
}
?>
Image
User avatar
alex6848
VIP - Donator
VIP - Donator
Posts: 201
Joined: Sat Jan 16, 2010 10:26 pm

Re: Something Big? Mabey
alex6848
Found my answere on phpforum.com
Geekman
Post subject: Re: User name regignision.
PostPosted: Sat Jul 24, 2010 11:26 am
New php-forum User
New php-forum User
Joined: Tue Jul 20, 2010 10:36 am
Posts: 4
Location: Behind You, With a SWORD!


How about this:
Code:
Code: Select all
<? if($_SESSION['userName'] == 'alex'){ ?>
HTML FOR USER GOES HERE.
<? } ?>

I used something like this on my site. See if it works for you. :D
Free Facebook Page Likes - http://fbliker.tk/?ref=gillis
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Something Big? Mabey
Lewis
My code would work also.
Image
User avatar
alex6848
VIP - Donator
VIP - Donator
Posts: 201
Joined: Sat Jan 16, 2010 10:26 pm

Re: Something Big? Mabey
alex6848
ya u r right keep up the good coding!
Free Facebook Page Likes - http://fbliker.tk/?ref=gillis
7 posts Page 1 of 1
Return to “Help & Support”