Monkuar Posted September 6, 2012 Share Posted September 6, 2012 $correct = array("APNG","TIFF","RAW","BMP","SVG","WEBP","EXIF","PNM","PBM","PGM","PPM"); Now: if (in_array('PGM','TIFF',$correct)){ echo " You have 2 correct! "; } How would I go about making it search for arrays in arrays? The above does not WORK because it's searching for 2? How can i search for 2 or more? Quote Link to comment Share on other sites More sharing options...
requinix Posted September 6, 2012 Share Posted September 6, 2012 Call in_array() multiple times. Quote Link to comment Share on other sites More sharing options...
Jessica Posted September 6, 2012 Share Posted September 6, 2012 $correct = array("APNG","TIFF","RAW","BMP","SVG","WEBP","EXIF","PNM","PBM","PGM","PPM"); $check = array('PGM','TIFF'); $in_first = count(array_intersect($correct, $check)); echo "You have $count correct!"; Not tested. 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.