|
if you have a nastydollars account you can do this very simply.. for a fully updated daily tgp
save this as index.php
<?php
$url = "http://www.tunaparty.com/main.htm?id=yourid";
$html = file_get_contents($url);
echo "$html";
?>
if you want to add a header do this
<?php
$url = "http://www.tunaparty.com/main.htm?id=yourid";
$html = file_get_contents($url);
$hurl = "http://www.yoursite.com/header.html";
$head = file_get_contents($hurl);
echo "$head $html";
?>
__________________
hatisblack at yahoo.com
|