|
Posted by denisb on 11/14/06 09:03
Petr Vileta <stoupa@practisoft.cz> wrote:
> "Satya" <satya61229@gmail.com> píse v diskusním príspevku
> news:1163421964.962890.47200@i42g2000cwa.googlegroups.com...
> > But a clever user/programmer can go to source code and use the link of
> > your org. image.
> Or any clever BFU go to browser menu and click on "Save as..." :-)))
> This is "Mission Impossible"
what about this ?
<http://www.circaete.net/selection.php?i=p01>
<http://www.circaete.net/selection.php?i=p02>
<http://www.circaete.net/selection.php?i=p03>
"structure of server" :
base_server [private]
*__ p01.jpg
*__ p02.jpg
*__ p03.jpg
\__ web [public]
*__ montre.php
*__ selection.php
"montre.php" :
<?php
$verif = array(p01,p02,p03);
$url = in_array( $_GET['i'], $verif ) ? '../'.$_GET['i'].'.jpg' : '';
echo file_get_contents( $url );
?>
"selection.php" :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>sélection</title>
<style type="text/css">
BODY {
background-image:url(montre.php?i=<?php echo $_GET['i']; ?>);
background-repeat:no-repeat;
margin:0;
padding:0;
}
</style>
</head>
<body>
</body>
</html>
it's still possible to copy the image, but it's a little more
complicated.
--
@@@@@
E -00 comme on est very beaux dis !
' `) /
|\_ =="
Navigation:
[Reply to this message]
|