Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
hide image source with php
02-04-2011, 03:50 PM
Post: #2
RE: hide image source with php
use this script:

if ($_SERVER["HTTP_REFERER"] != "") {
$image = $_GET["my_image_path"];
header ("Content-Type: application/octet-stream");
$fp = fopen($image,"r");
echo fpassthru($fp);
} else {
header('Location: $GO_SOMEWHERE');
}

Web Design Directory | Web Designers | SEO Melbourne
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
hide image source with php - justinOrel - 01-12-2011, 10:54 AM
RE: hide image source with php - petermoses - 02-04-2011 03:50 PM
RE: hide image source with php - jackkelly - 08-07-2012, 10:08 PM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)