Con contenido editable me refiero a esto:
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>
window.onload=function(){
if(document.getElementById('pp').contentEditable){
//firefox 3, explorer, safari, ópera
document.getElementById('pp').contentEditable='true'
}else{//firefox 2
var ifr=document.createElement('iframe');
var old=document.getElementById('pp');
ifr.id='pp';
ifr.frameBorder='0';
ifr.height='20';
ifr.width='100%';
ifr.onload=function(){
var doc=ifr.contentWindow.document || ifr.contentDocument;
doc.body.innerHTML=old.innerHTML;
doc.documentElement.style.margin=doc.body.style.margin=0;
doc.designMode="on";
}
old.parentNode.replaceChild(ifr,old);
}
}
</script>
</head>
<body>
<div id="pp">Acá se puede escribir, igual que en el otro ejemplo que te mostré antes</div>
</body>
</html>