how to syndicate ozone archive (link file) with PHP

yann at x-arn.org yann at x-arn.org
Sun Sep 9 01:06:05 CEST 2001


<?php

$fichier = @fopen("http://ozone.re-lab.net/ram_s.html","r");
if($fichier)
{
	while($buffer = fgets($fichier, 1024))
	{
		echo $buffer;
	}
fclose($fichier);
}

?>





More information about the Syndicate mailing list