php if statement not working in internet explorer
        Posted  
        
            by Idealflip
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Idealflip
        
        
        
        Published on 2010-05-17T18:11:16Z
        Indexed on 
            2010/05/17
            18:20 UTC
        
        
        Read the original article
        Hit count: 250
        
Hi everyone, ie isn't interpriting my php if statement well, any ideas?
<input type="image" src="Images/submit.png" value="REGISTER" name="command" />
    if($_REQUEST['command'] == 'REGISTER'){
        print "test";
    }
    else{
    }
It is not printing "test"
© Stack Overflow or respective owner