i understand regex now, thanks.
i have another question though.
for example when i search for something like:
preg_match_all("/bla/", $string, $save);
that should put all the matches of that in $save[0][$i++] correct?
is there a way to do search for different things, and store them in $save also?
so like the next search would be $save[1][$i++]. or do i always have to create a new var?
thanks