http://webtuts.co.uk/?id=http://juic...es/readability
You might want to change your "id" system so that it only includes documents from your root website. Otherwise people could eatup your bandwidth, and get to sites they were blocked at by using you as a proxy. That is assuming I understood the php include, as I understand your server requests the file, and pushes the contents of it into the page it sends to me. Right?
try this:
Code:
<?php
$urlLegnth='13'
$rootCheck=substr($id, 0, $urlLegnth);
if($rootCheck=='webtuts.co.uk')
if (!$id) { include "news"; } else { include $id . ".php"; }
?>