Hi David,
I've added the roman numerals to your regex, now it will match either
just the year (2000) or the year + the roman numeral (2000/I) up to VIII
(I know you said it goes up to III, but you never know)
preg_match('/\((19|20)[0-9][0-9](\/(I{1,3}|IV|VI{0,3}))?\)/',$line,$found);
I haven
Michael,
I don't know how much control you have over the webserver, but have you
looked at the PCNTL extension? I've played around with it a while ago,
and it works very nicely. I've only used it in a LAMP environment, but
it should do the same in a WAMP environment.
Rene
Michael J. Forte wro