dadamssg Posted March 29, 2009 Share Posted March 29, 2009 i want to dress up my if statements. can anyone explain the correct use of &&? i want to do this if($_SESSION['auth'] =="yes" && isset($_SESSION['logname'])) { echo "<center><form action='reply_form.php?id={$postid}' method='POST'> <input type='submit' name='do' value='Reply'> </form></center>"; } but this never shows my button...i want to show my button if auth=yes and that session variable is set Quote Link to comment https://forums.phpfreaks.com/topic/151640-solved-how-to-use/ Share on other sites More sharing options...
wildteen88 Posted March 29, 2009 Share Posted March 29, 2009 Check that $_SESSION['auth'] exists aswell if(isset($_SESSION['logname'], $_SESSION['auth']) && $_SESSION['auth'] =="yes")) { echo "<center><form action='reply_form.php?id={$postid}' method='POST'> <input type='submit' name='do' value='Reply'> </form></center>"; } // added for debug purposes only else { echo 'Problem! $_SESSION contains<pre>'.print_r($_SESSION, true).'</pre>'; } Quote Link to comment https://forums.phpfreaks.com/topic/151640-solved-how-to-use/#findComment-796354 Share on other sites More sharing options...
dadamssg Posted March 29, 2009 Author Share Posted March 29, 2009 hey perfect...works like a charm. thanks Quote Link to comment https://forums.phpfreaks.com/topic/151640-solved-how-to-use/#findComment-796356 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.