Jump to content

[SOLVED] echo != statement help?


wmguk

Recommended Posts

Hi again

 

My code is

<?php

if ($pass == "")
{
$password == "X";
}
$password = $pass ;
  
  echo "$password" ;
?>

 

Im trying to get it, so that if the password field is blank, it sets $password as X, but if the password has something in it, it will show it...

 

the show $password works if i enter a password, but i cannot get it to show X

 

Im sure this is a stupid question but itis 04.20am and im about done i think....

Link to comment
Share on other sites

either

<?php

if ($pass == "")
{
$password = "X";
}else{
$password = $pass ;
}
echo "$password" ;
?>

 

 

or

 

 

<?php
$password = $pass ;
if ($pass == "")
{
$password = "X";
}
echo "$password" ;
?>

 

or

 

 

<?php
$password = $pass ;
if (empty($pass))
{
$password = "X";
}
echo "$password" ;
?>

Link to comment
Share on other sites

Im not doing too badly considering when i started this at 8pm i couldnt even get sessions to work lol, this is such a monster of a site, but my god, what a challenge lol...

 

just got loads of stupid niggles, like the other thread where its not displaying anything at all....

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.