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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.