View Single Post
  #13  
Old 06-28-2004, 05:46 PM
 
NuAlpha NuAlpha is offline
 

X-Adept
  
Join Date: Aug 2003
Location: US
Posts: 598
 

Default

Minor update:

Replace the code:
Code:
# Pad with 256 bytes for Internet Explorer to show output immediately. for ($pad=0; $pad < 256; $pad++) echo "\t";

...with:
Code:
# Pad with 256 bytes for Internet Explorer to show output immediately. if (strpos($_SERVER['HTTP_USER_AGENT'],'MSIE') !== false) for ($pad=0; $pad < 256; $pad++) echo "\t"; echo "\n";

__________________
X-Cart Pro 4.5.5 Platinum
X-Payments 1.0.6
PHP 5.3.14
MySQL 5.1.68
Apache 2.2.23
Reply With Quote