|
Posted by the DtTvB on 06/14/06 10:15
For outputting plain text, I always do this:
<?php
header('Content-Type: text/plain');
// Send this header so that browsers won't treat it as HTML
echo "row1,row2,row3,row4\r\n"; // Use double quotes!
echo "row1,row2,row3,row4\r\n";
echo "row1,row2,row3,row4\r\n";
echo "row1,row2,row3,row4\r\n";
echo "row1,row2,row3,row4\r\n";
echo "row1,row2,row3,row4\r\n";
?>
Navigation:
[Reply to this message]
|