Hola, pepelucho.
Código PHP:
<html>
<head>
<script>
var mostrar=false;
function inter() {
col= (mostrar) ? '#000' : '#fff';
document.getElementById('txt').style.color=col;
mostrar = !mostrar;
setTimeout('inter()',500);
}
</script>
</head>
<body onload="inter()">
Este <span id="txt">texto</span> es intermitente
</body>
</html>
Espero que te sirva. Saludos,