Aureole Posted July 28, 2007 Share Posted July 28, 2007 Normally I'd do something like this... <?php if (Something) { echo "Something..."; } else { echo ""; } ?> Would this work the same? <?php if (Something) { echo "Something..."; } else { } ?> Quote Link to comment Share on other sites More sharing options...
emehrkay Posted July 28, 2007 Share Posted July 28, 2007 yes. as a matter of fact, you dont even need the else *gasp* Quote Link to comment Share on other sites More sharing options...
Aureole Posted July 28, 2007 Author Share Posted July 28, 2007 Didn't know that. *exasperated gasp* Thanks... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.