another problem
i will try to take all html tags with this regex
$string = "<input> aaa </input>";
preg_match('<.*?>',$string,$res))
it works gut, until i have a string
$string = "<input type='hidden' \n
name='test' \n
value='5' > ";
with the regex, it wont find anything
do you have idea, which regex i should use?