foreach ($post > 3 as $post ) { $post"; }
how would i do something like that.. for every thing in array $post thats larger then $post[3]
:: still baffled ::
foreach ($post as $key => $value) if ($key > 3) echo $value;
Best I can think of.
HTH