I'm having difficulty with a simple regular expresssion and need some help:
I am Trying to get the following string from an html file: VALUE="iar:4987">
The code below returns no values for $regs[0] or $regs [1]
//($result is the html file)
eregi("value.+",$result, $regs)) ;
echo $regs[0];
echo $regs[1];
I'd really appreciate any help
Thanks