<?PHP
//replace the value of $url with your own link from the code generator
$url "http://rpc.blogrolling.com/display_raw.php?r=your_roll_id";
if(
$my_blogroll = @fopen("$url""r")){
    while(! 
feof($my_blogroll)){
        
$blogroll fgets($my_blogroll255);
        echo 
"$blogroll";
    }
}else{
    echo 
"ERROR: $url is currently inaccessible";
}
?>