print_r($nestedarray):
 Array(
 [0]=>Array([id]=>1 [name]=>name1 [etc]=>etc1)
 [1]=>Array([id]=>2 [name]=>name2 [etc]=>etc2)
 [3]=>Array([id]=>3 [name]=>name3 [etc]=>etc3)
 )

if I want to check whether id=5 is in that $nestedarray, how to do that?!?!

i'd really appreciate the help..

<?php
    foreach ($nestedarray as $v) {
        if ($v['id'] == 5) {
            $in_array = true;
            break;
        }
    }
?>

--
Richard Heyes
http://www.websupportsolutions.co.uk

Knowledge Base and HelpDesk software
that can cut the cost of online support

** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-PROFITS **

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to