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
https://forums.phpfreaks.com/topic/65764-solved-echo-statement-help/
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" ;
?>

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

 

 

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.