Use the below form to find your Instagram ID number by entering your valid username. visit http://www.ershad7.com/InstagramUserID/
Daily Archives: July 26, 2017
Check variable if explode-able in PHP
use explode itself to see if it is explodable $a = explode(” “,”Where Am I?”); if(count($a)>1) { echo “explodable”; } else { echo “No use of exploding”; } or if(strpos($row[‘city’], ‘ ‘) !== false) { // explodable } else { // not explodable }