I am having a problem with a nested if statement in php. Everything
works fine, but it doesn't display the information that I am trying to
retrieve using a second if statement.

CODE:

if (($fr == 'FR') && ($xe == 'XE') && ($co == 'CO')) { print
"Statement";
        } elseif (($ag == 'AG') && ($rz == 'RZ') && ($sa == 'SA')) {
print "Additional Statement"; 
                if ($sr == 'SR') { print "More Info"; }
         print "Line continuation";
                if (($rx == 'RX') && ($rj == 'RJ') && ($rr == 'RR') &&
($rd == 'RD') && ($ra == 'RA')) { print "additional information"; }

// Everything works except this nested if statement - No php error, it
just doesn't display the information

         print "</font></td></tr><tr>";
} else { print "other information if false"; }


ENDCODE:


Thanks in advance

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to