Ok then you need to fetch the code like you would with fopen / fread but explode using delimiters exclusive/rarely found in the .asp page.
Like for example if the text is enclosed in <i></i> tags then make the first explode delimiting to '<i>'. This should split it in half if it's the only <i> tag on the page.
Push the array values into variables using
$Item1 = $array[0]
Then explode the variable with the info1, info2, info3 in it by delimiting by the '</i>' this time.
This should cut the variable into two more array values - one with just the info you need and one with the junk afterwards.
Now push these arrays values again itno variables. Explode once more delimiting by whatever the info is divided by ( it's a | pipe isn't it?)
And voila.
If this makes no sense then imagine a half slice of orange with a nasty bit in the middle. You'd cut once on the left, once on the right and once underneath sot hat you now get that bad bit and dispose of it (well this is you getting the good bit and using it 😛)
Please tell me you understood all that! I just woke up from sleepin on sofa. It's quarter past 1 here and I'm exhausted. Make no sense.