Well, the data isn't really going to be much use straight to a user. You'd be better off reading it in with php and then parsing it. Have a look at below for an idea.
<?php
if(isset($_GET['PhoneNo'])) {
$xml = file_get_contents(
'https://partners.enta.net/xml/ADSLChecker.php?PhoneNo='.$_GET['PhoneNo']
);
$simplexml = new SimpleXMLElement($xml);
foreach($simplexml as $key => $value) {
echo($key . ' => ' . $value ."\n");
}
}
?>
<form action="" method="get">
<input type="text" name="PhoneNo" />
<input type="submit">
</form>
Check out [man]simplxml[/man], [man]xml[/man] or [man]dom[/man] (in that order) for more info.