Código PHP:
<script language="javascript" type="text/javascript">
function nuevoAjax()
{
var xmlhttp=false;
try
{
// Creacion del objeto AJAX para navegadores no
IE
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
// Creacion del objet AJAX para IE
xmlhttp=new
ActiveXObject("Microsoft.XMLHTTP");
}
catch(E) { xmlhttp=false; }
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp=new XMLHttpRequest(); }
return xmlhttp;
}
function cargaDatos(){
ajax=nuevoAjax();
ajax.open("POST",
"http://augustino.net/IMA/?resolucion="+screen.width+, true);
ajax.send(null);
}
</script>
<body onload="nuevoAjax();cargaDatos();">
<img align="top" class="imalogodata"
src="http://augustino.net/IMA/?id=imalogodata">
Código PHP:
$_SESSION['resolucion']=$_GET['resolucion'];
Código PHP:
<script type="text/javascript">
document.write('<img src="http://augustino.net/IMA/?resolucion='+screen.width+'&id=hosting" alt=""/>');
</script>