Dear all experts,
In my small php script, I have a variable called $result, in $result, there is mutliple line of HTML code.
$result contain
<input type=text name=man value="KK Yuen">
<input type=text name=no value="30">
<input type=text name=add value="69">
I would like to use "eregi" to extract the value of man, no and add.
such as:
eregi("something1", $result, $man);
eregi("something2", $result, $no);
eregi("something3", $result, $add);
OK, what should be typed in something1, something2 and something3?
Thank You!