Hi cassius!
$newarray = preg_grep("/REGEXP/",$oldarray);
uses a regular expression. as you can see. While a regexp simply searches for the occurence of a string inside another string, "grep" (similar to the UNIX grep cmmand) will return all data-rows of an array, that contain the string searched for using the regexp.
What I want to do is, that preg_grep returns all the data-rows of the "oldarray", that do not contain the regexp. In Perl you just put a "!" (NOT) before the regexp, but I have no idea how to accomplish this in PHP (I am very noob to PHP 😉
thanks for your help anyways!
csx