Código PHP:
$folder = $_POST['name_folder'];
$f1 = fopen(index.php,"w");
if ($f1)
{
$content .= "<?php ";
$content .= "echo $title = file_get_contents('videos/$folder/title.html', true); ";
$content .= "echo $desc = file_get_contents('videos/$folder/description.html', true); ";
$content .= "echo $code = file_get_contents('videos/$folder/code.html', true); echo '<h1>'.$title.'</h1>'; echo '<p>'.$desc.'</p>'; echo '<p>'.$code.'</p>'; ";
$content .= "?>";
fwrite($f1,$content);
fclose($f1) ;
}
else
{
echo "We cannot create the index.php file<br />";
}
Me gustaría que generase un índex.php con esta información:
<?php
echo $title = file_get_contents('videos/NOMBRE_CARPETA/title.html', true);
echo $desc = file_get_contents('videos/NOMBRE_CARPETA/description.html', true);
echo $code = file_get_contents('videos/NOMBRE_CARPETA/code.html', true);
echo '<h1>'.$title.'</h1>';
echo '<p>'.$desc.'</p>';
echo '<p>'.$code.'</p>';
?>
Gracias de antemano por su tiempo.