CODE
<?php
$dilbert_html = file_get_contents("http://www.dilbert.com/");
$pattern = "(/comics/dilbert/archive/images/dilbert\d*\.(gif|jpg))";
preg_match($pattern,$dilbert_html,$image_location);
header("Location: http://www.dilbert.com$image_location[0]");
?>
$dilbert_html = file_get_contents("http://www.dilbert.com/");
$pattern = "(/comics/dilbert/archive/images/dilbert\d*\.(gif|jpg))";
preg_match($pattern,$dilbert_html,$image_location);
header("Location: http://www.dilbert.com$image_location[0]");
?>
CODE
[IMG]http://badgerfest.com/forum/uploads/dilbert.php[/IMG]