Hola, Ugho y KarlanKas.
¿Sería algo así?
Código PHP:
<html>
<head>
<script>
function poner(txt) {
document.getElementById('texto').innerHTML=txt;
}
</script>
</head>
<body>
<input type="button" onclick="poner('En un lugar de la Mancha de cuyo nombre...')"/>
<input type="button" onclick="poner('Con diez cañones por banda viento en popa...')"/>
<input type="button" onclick="poner('Se me ha acabado el repertorio literario...')"/>
<table>
<tr>
<td id="texto"> </td>
</tr>
</table>
</body>
</html>
Saludos,