View Single Post
  #17 (permalink)  
Old 04-28-09, 04:38 AM
Nikas Nikas is offline
Coding Addict
 
Join Date: Jun 2005
Location: Singapore
Posts: 377
Thanks: 0
Thanked 1 Time in 1 Post
Ok. I think this way would solve it. I look at php.net for some examples.

PHP Code:

foreach ($new_array['Schedule Date'] as $shedule_date) {

        if ( 
in_array($shedule_date$gp) ) {
            echo 
"yes".$shedule_date.$new_array['Name'];
        }
        } 
Reply With Quote