Jump to content

[SOLVED] echoing problem


ibanez270dx

Recommended Posts

Hello everyone,

I have a code snippet that parses a CSV file... it works fine on my personal server (Apache, PHP 4.3), but I recently installed a fresh copy of PHP 5.2.5 on a virtual server here at work and it doesn't seem to want to do it... I'm running PHP 5.2.5 on IIS v6 w/ ISAPI. I know PHP is working correctly because my test page works fine. It will not display the results in <? echo "$display" ?>. However, it will echo out when it is still in the PHP tags. It is something like this:

 

$row = 1;
$handle = fopen("test.csv", "r");
while (($data = fgetcsv($handle, 1500, ",")) !== FALSE) 
   {
    if($row==1)
{
         $row++;
         continue;
        }
    $num = count($data);

    $display .= "<tr><td><font size=2 face=arial>$data[0]</td>
 	        blah blah blah
	        <td><font size=2 face=arial>$data[41]</td></tr>";
      
   }

fclose($handle);

echo $display;     // THIS WORKS
?>

<? echo "$display" ?> // THIS DOESN'T WORK

 

Any help is appreciated!

 

Thanks,

- Jeff

Link to comment
https://forums.phpfreaks.com/topic/84916-solved-echoing-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.