Danke, werde ich jetzt erstmal einbauen und durchtesten!
Vielen Dank für die Hilfe!
Gruss
Dieter
Moin
preg_match_all('/(\<input.*type\s?\=\s?"text".*>)/', $siteCode,$matches)
relativ umständlich
preg_match_all('~<input (.*?)>~')
<- liefert alle Inputs zurück
sorry, ich überlas, dass du alle teyxt Inputy haben möchtest. Dann selbstverständlich:
<input ((type.*?text).*?)>
preg_match_all('~<input (((?!readonly).)*?)>~')
und <input (type.*?text((?!readonly).)*?)>
Gruß Bobby