Se las conoce como imágenes de seguimiento, o bien podés hacerlo con php
tracker.html
<!DOCTYPE html>
<html lang="es-ar">
<head>
<meta charset="utf-8" />
<title>Html5</title>
</head>
<body>
<img src="tracker.php?id=1234" alt="" />
</body>
</html>
tracker.php
Código PHP:
Ver original<?php
$archivo = "378.gif";
$dato = $_GET['id'];
header('Content-Type: image/gif'); header('Cache-Control: must-revalidate'); ?>
ó con javascript
Código HTML:
Ver original<!DOCTYPE html>
<script type="text/javascript"> //<![CDATA[
function registrar(i){
var valorId = i.src.split('=');
alert(valorId[1]);
// ya tenes el id, ahora manejás el valor
}
//]]>
<img src="378.gif?id=1234" onload="registrar(this)" alt="" />
De tener más parámetros vas a tener que parsear la query string
SAludos