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' ; } 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"; } 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! 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
Archived
This topic is now archived and is closed to further replies.