concatenation changes?? I've noticed this too, you can either do what you
did, or put {} around variable within quotes..
----- Original Message -----
From: "Ross" <ross@xxxxxxxxxxxxx>
To: <php-general@xxxxxxxxxxxxx>
Sent: Thursday, March 08, 2007 4:57 AM
Subject: 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