ibanez270dx Posted January 7, 2008 Share Posted January 7, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/84916-solved-echoing-problem/ Share on other sites More sharing options...
GingerRobot Posted January 7, 2008 Share Posted January 7, 2008 Edit: ignore. Being blind. Quote Link to comment https://forums.phpfreaks.com/topic/84916-solved-echoing-problem/#findComment-432953 Share on other sites More sharing options...
revraz Posted January 7, 2008 Share Posted January 7, 2008 <?php echo "$display" ?> Quote Link to comment https://forums.phpfreaks.com/topic/84916-solved-echoing-problem/#findComment-432958 Share on other sites More sharing options...
ibanez270dx Posted January 7, 2008 Author Share Posted January 7, 2008 dude, you rule. I didn't even think of that. I automatically assumed that short tags were enabled... Thanks very much, - Jeff Quote Link to comment https://forums.phpfreaks.com/topic/84916-solved-echoing-problem/#findComment-432965 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.