defeated Posted August 29, 2008 Share Posted August 29, 2008 Hi, How do I write the following? if(isset($1 or $2 or $3 or $4)){ echo 'something' ; } Quote Link to comment https://forums.phpfreaks.com/topic/121843-solved-isset-query-just-a-quick-one/ Share on other sites More sharing options...
JasonLewis Posted August 29, 2008 Share Posted August 29, 2008 if(isset($1) || isset($2) || isset($3) || isset($4)){ echo "something"; } Quote Link to comment https://forums.phpfreaks.com/topic/121843-solved-isset-query-just-a-quick-one/#findComment-628605 Share on other sites More sharing options...
defeated Posted August 29, 2008 Author Share Posted August 29, 2008 Cheers! Quote Link to comment https://forums.phpfreaks.com/topic/121843-solved-isset-query-just-a-quick-one/#findComment-628609 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.