Code:
<?php
$blubb = file_get_contents('http://www.united-irc.eu');
echo $blubb;
?>
oder
Code:
<?php
$blubb = file('http://www.united-irc.eu');
print_r($blubb);
?>