concatenation changes?? I've noticed this too, you can either do what you did, or put {} around variable within quotes..



----- Original Message ----- From: "Ross" <[EMAIL PROTECTED]>
To: <php-general@lists.php.net>
Sent: Thursday, March 08, 2007 4:57 AM
Subject: [PHP] why did it stop working?



Can someone explain to me why this used to work but then stopped

header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; filename=$name");

and this now works

header("Content-length: ".$size);
header("Content-type: ".$type);
header('Content-Disposition: attachment; filename="'.$name.'"');
echo $content;


Any suggestions?
--
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

Reply via email to