I have this code
<html>
<body background="http://newevolutiondesigns.com/images/freebies/abstract-background-22.jpg">
<br><br><br><br><br>
<DIV align="center">
<?php
$img = $_GET["img"];
?>
<?php
if($img=="") { echo ""; } else { echo "<img src='" . $img . "' />"; } ?>
<br>
</body></html>
I’m using this for screensnapr so when i’m trying to see the picture with http://imagesnappper.co.cc/Images?img= it autoamtically adds a / after ?img=
so it’s like http://imagesnappper.co.cc/Images?img=/8kd6lx.jpg and it won’t show the image how to delete that slash?
Try using…