Files
wizzardRedux/sites/C64Heaven.php
2016-03-18 01:42:48 -07:00

19 lines
298 B
PHP

<?php
// Original code: The Wizard of DATz
print "<pre>";
$page = "http://www.c64heaven.com/";
print "load ".$page."\n";
$content = get_data($page);
preg_match_all("/<a href=\"(.*)\">/", $content, $links);
$links = $links[1];
var_dump($links);
print str_replace('style', null, $content);
?>