Jump to content

Recommended Posts

My IF statements are not working as I need them to work. Every varible in the sub= statement has to be filled with something. If the variables are filled with nothing, then the script does not work. The variables come into the script from a form. I have fundamental errors in how I have put the IF statements together. The echo'd result is  ||||||crm instead of power | peace | fill_3 | fill_4 | fill_5 | fill_6 | crm

 

Thank you in advance for your input and for any help given.

 

$A = 'power';
$B = 'peace';
$C = ' ';
$D = ' ';
$E =  '';
$F = ' ';
$G = ' ';


If ($A = ' '){
$A='fill_1';
}
If ($B = ' ' ){
$B='fill_2';
}
If ($C = ' '){
$C='fill_3';
}
If ($D = ' '){
$D='fill_4';
}
If ($E = ' '){
$E='fill_5';
}
If ($F = ' '){
$F='fill_6';
}
$G = 'crm';

$sub = $A  . '|'  .  $B  .  '|'  .  $C  .  '|'  .  $D  .  '|'  .  $E . '|' .  $F . '|' .  $G;

echo $sub;

 

This is the echo'd result.

 

||||||crm

Link to comment
https://forums.phpfreaks.com/topic/56156-solved-if-statements-not-working/
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.