Tengo este script y no consigo que ponga la extensión. Me copia los archivos pero no pone que son ( htm ) alguien sabe ¿porque?
<?
$flores="totflor.txt";
$fds = fopen ("totflor.txt", "r");
while (!feof($fds)) {
$bufon = fgets($fds, 4096);
$z++;
$gnr[$z]=$bufon;
}
fclose ($fds);
for ($ns = 1; $ns <=3; $ns++) {
$filete=$gnr[$ns];
print $filete;
copy($flores,$filete.".htm");
}
?>
:) :)