ile başlığını seçerek tablolar halinde

0 Cevap php

Böyle bir indirme sayfası yapmaya çalışıyorum im:

<?php
$filetype = $_POST['filetype'];

echo "$filetype";

if( $filetype == '256mp3'){
    header('Content-disposition: attachment; filename=mp3.html');
    header('Content-type: text/html');
    readfile('mp3.html');
}
if($filetype == 'apple lossless' ){
    header('Content-disposition: attachment; filename=applelossless.html');
    header('Content-type: text/html');
    readfile('applelossless.html');
}
?><!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>Untitled Document</title>
</head>
<body>
</body>
</html>

Ben o zaman ben indirilebilir istediğiniz dosyayı seçer değişken $ filetype, göndermek için bir form kullanın.

Ben bu hatayı alıyorum

Warning: Cannot modify header information - headers already sent by (output started at /home/thetempers/www/presskit/download.php:5) in /home/thetempers/www/presskit/download.php on line 13

Warning: Cannot modify header information - headers already sent by (output started at /home/thetempers/www/presskit/download.php:5) in /home/thetempers/www/presskit/download.php on line 14

neden bu boşluk etiketleri önce orada vardır çalışmıyor

0 Cevap