Haber, una cosa más quisiera preguntar una cosa más. ¿Cómo puedo incluir en ese documento html y php?
¿Bastaría con poner exclusivamente el código? No, ¿verdad? Es decir no podría poner:
Código PHP:
Ver original<?php
file_put_contents('asdf.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=utf-8" />
<title>Asdf document</title>
</head>
<body>
<span color="c8c8c8">Esto es una prueba...</span>
// e incluir también php por aquí...
</body>
</html>');
?>
Bueno, ¿cómo lo haría? Gracias de nuevo.