Display image in gmail
Display image in gmail
// content index.html
<img src="script.php?f=img.png">
//content of script.php
<?php
header('content-type: image/jpg');
readfile($_GET['f']);
?>
// content index.html
<img src="script.php?f=img.png">
//content of script.php
<?php
header('content-type: image/jpg');
readfile($_GET['f']);
?>
Comentarii
Trimiteți un comentariu