foreach($this->prop_ids as $key){ SQL Query(get data using $key[0]) }
$prop_ids =
Array
(
[0] => Array
(
[0] => 1
)
[1] => Array
(
[0] => 2
)
[2] => Array
(
[0] => 4
)
)
Then I just call $key[0] in my SQL query.
Using "$key => $value" $key returns one empty loop and $value has no value.
I am passing it an array it seems...any other suggestions?
Note: I also get warnings when I do a mysql_fetch_row. But those I can simply @ out...hrmm...