hello
I have a foreach loop and trying to filter out the imagefield from the post varaibles but does not seem to work, here is my code:
[php
foreach ($_POST as $key => $val) {
if ($key != 'imageField_x' || $key != 'imageField_y') {
echo $key . ' > ' . $val . '<br>';
}
}
[/code]
my echo shows the imageFields?
yet it shows my imageFields and I don't want to send it with my form fields, should I try another approach to filter these out?
thanks in advance...