<?php
//only need to replace [url]www.mundoclic.com[/url] with the
//url to grab from.
//In BEFORE and AFTER CODE insert the tags
//between the information to grab
//thats all. coments to [email]agustind@hotmail.com[/email]
//Enjoy!
$file = fopen("http://www.mundoclic.com", "r");
$rf = fread($file, 20000);
$grab = eregi("BEFORE CODE(.*)AFTER CODE",
$printing[1] = str_replace("#cccc99", "white", $printing[1]);
fclose($file);
echo $printing[1];
?>