Some elements in my array are empty strings based on what the user has submitted. I need to remove those elements. I have this:
foreach($linksArray as $link)
$a = array(1, '', '', '', 2, '', 3, 4); $b = array_values(array_filter($a)); print_r($b)