Para acceder al document de un iframe tenés que usar algo como esto:
Código PHP:
var docIfr=document.getElementById('iddeliframe').contentDocument || document.getElementById('iddeliframe').contentWindow.document;
Luego, ya teniendo acceso al document del iframe ya podés usar innerHTML:
Código PHP:
docIfr.body.innerHTML='lo que sea';
Un ejemplo:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<script>
onload=function(){
var docIfr=document.getElementById('pp').contentDocument || document.getElementById('pp').contentWindow.document;
docIfr.body.innerHTML='<img src="http://static.forosdelweb.com/fdwtheme/isotipocervecero.jpg" />';
}
</script>
</head>
<body>
<iframe id="pp" width="500" height="200" />
</body>
</html>