Friend i want to hide download link from customers some body purchase a software from me i send him a link like this
http://localhost/comsdev1/mainjob.php?d_id=1
now i work with this d_id and get the actual link from database for seeking d_id=1 and i get the link script is this.
<?
if ($REQUEST["job_id"]=="")
{
HEADER( "location: seejob.php" ) ;
}
else
$id_d=$REQUEST["job_id"];
print $id_d. "ID";
$query="select * from links where id_d=".$id_d ;
$rquery=mysql_query($query)or die("cant execute query");
$qrow=mysql_fetch_array($rquery);
$link=$qrow['add_link'];
print $link;
?>
now here i want that this link execute and the file download at customer system but he do not see my actual link
is it possible if yes then how???
Please guid me...