Jump to content

[SOLVED] if else


chanfuterboy

Recommended Posts

hi,

 

i want to just if username is online it show menu.php if not show the html fields, what is the thing that i dont wrong plz help.

 

?>

if(isset($_SESSION["username"]))
{
    include('menu.php');
echo "Welcome, ".$_SESSION['username'];

}

else
{
?>

<form action="login.php" method="post">


				 <p align="right"><label><b>Username:</b> <input type="text" name="username" size="10" value="<? echo $username; ?>"></label>  


				 <label><b>Password:</b> <input type="password" name="password" size="10" value=""></label>


				 <input type="submit" value="Login!">


	</p>


	</form>

Link to comment
https://forums.phpfreaks.com/topic/180572-solved-if-else/
Share on other sites

if i try

 

if($_SESSION['username'])
{


    include('menu.php');
echo "Welcome, ".$_SESSION['username'];

}

else
{


<form action="login.php" method="post">


				 <p align="right"><label><b>Username:</b> <input type="text" name="username" size="10" value="<? echo $username; ?>"></label>  


				 <label><b>Password:</b> <input type="password" name="password" size="10" value=""></label>


				 <input type="submit" value="Login!">


	</p>


	</form>

?>	

 

It distroy the htm pag

Link to comment
https://forums.phpfreaks.com/topic/180572-solved-if-else/#findComment-952664
Share on other sites

<?php
if($_SESSION['username'])
{


    include('menu.php');
   echo "Welcome, ".$_SESSION['username'];
   
}

else


{  ?>
<form action="login.php" method="post">
         
            
                <p align="right"><label><b>Username:</b> <input type="text" name="username" size="10" value="<? echo $username; ?>"></label>  
            
            
                <label><b>Password:</b> <input type="password" name="password" size="10" value=""></label>
            
            
                <input type="submit" value="Login!">
            
         
      </p>
            
         
      </form>
<?php } ?>

 

try that?

[/code]

Link to comment
https://forums.phpfreaks.com/topic/180572-solved-if-else/#findComment-952667
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.