OJD Commit: Fix node id reset
[eidogo-ojd.git] / php / fetch.php
blob9b227cefbb9b136652034d929acfe036f7036fa2
1 <?php
3 $url = $_GET['url'];
4 $content = file_get_contents($url);
5 if (strlen($content) > 30000) {
6 // ~30 KB limit
7 exit;
9 echo $content;