Re: server error or script error

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This script change does not make a difference. What could have been turned 
on/off on the server to cause this?

I can output the binary to screen but I cannot create the pdf.


R.

""Flavien CHANTELOT"" <fchantelot@xxxxxxxxxxx> wrote in message 
news:6248BAF37534EC4086203ED217BEAA2307A627@xxxxxxxxxxxxxxxxxxxxxx
I guess the problem is here :
$query = "SELECT * FROM mypdfs WHERE id =$id";
Change it to :
$query = "SELECT * FROM mypdfs WHERE id =".$id;



-----Message d'origine-----
De : Ross [mailto:ross@xxxxxxxxxxxxx]
Envoyé : jeudi 8 mars 2007 09:39
À : php-general@xxxxxxxxxxxxx
Objet :  server error or script error

<?php

include ('../phpscripts/connect.php');
$id = $_GET['id'];

$query = "SELECT * FROM mypdfs WHERE id =$id";

$result= mysql_query($query) or die('Error, query failed');

if (!mysql_num_rows($result))
{
   die("No matching records were found in the database.");
}


   while  ($row = mysql_fetch_array($result, MYSQL_ASSOC)){

  $size=$row['pdf_size'];
   $type=$row['pdf_type'];
$name=$row['pdf_name'];
   $content=$row['content'];

header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; $name; ");
echo $content;
}


?>

I use this script but is had sudenly stop working. I think it is a config
change on the remote server. The porblem is the file either doesn't open or
downloads as download.php

Can anyone suggest a way to improve this script or debug to fins out if it
is a script error or server error.


R.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux