dimanche 20 avril 2014

file download not working in php


Vote count:

0




But i get the same error with below code as well… can you please share me your suggestions..


Error:


Warning: Cannot modify header information - headers already sent by (output started at /home/stthohuu/public_html/sp/announcements.php:1) in /home/stthohuu/public_html/sp/announcements.php on line 45


Warning: Cannot modify header information - headers already sent by (output started at /home/stthohuu/public_html/sp/announcements.php:1) in /home/stthohuu/public_html/sp/announcements.php on line 46



<?php
if(isset($_GET['id']))
{
ob_start();
// if id is set then get the file with the id from database
$con = mysql_connect('localhost', abc’, 'abc') or die(mysql_error());
$db = @mysql_select_db('stthohuu_church', $con);
$id = $_GET['id'];
$query = "SELECT name, type, size, content " .
"FROM newsletter WHERE id = '$id'";
$result = mysql_query($query) or die('Error, query failed');
list($name, $type, $size, $content) = mysql_fetch_array($result);
header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; filename=$name");
ob_clean();
echo $content;
mysql_close();
exit;
}
?>
</head>
<body>

<?php
//database connection
$con = mysql_connect('localhost', abc', 'abc') or die(mysql_error());
//select database
$db = mysql_select_db('stthohuu_church', $con);
$query = "SELECT id, name FROM newsletter order by id desc";
$result = mysql_query($query) or die('Error, query failed');
if(mysql_num_rows($result) == 0)
{
echo "No files found in DB<br>";
}
else
{
while(list($id, $name) = mysql_fetch_array($result))
{
?>
<a href="../archive_newsletter.php?id=<?php echo urlencode($id);?>"
><?php echo urlencode($name);?></a> <br>
<?php
}
}
mysql_close();
?>
</body>
</html>


asked 34 secs ago






Aucun commentaire:

Enregistrer un commentaire