This isn't really a PHP question, but look at the <pre> html tag.
Patrick McKinley wrote:
Is there a way of getting a php to display all the spaces in a file.
i have used this to display an nfo file on my site:
-------------------nfoload.php
<?
$fol = $_GET['fol'];
$nfono = $_GET['nfono'];
require("nfo/".$fol."/ind.txt")
?>
<title><? echo $nfo ?></title>
<body background="images/backg.jpg">
<?
$file = "nfo/".$fol."/".$nfo."";
$fp = fopen($file, "r");
$fc = fread($fp, filesize($file));
echo nl2br($fc);
fclose($fp);
?>
--------------------------------------------nfo/$fol/ind.txt (tells the script filenames for the nfo files)
<?
if $nfono == "1" {
$nfo = "nfo_file_1.nfo
}
else if $nfono == "2" {
$nfo = "nfo_file_2.nfo
}
?>
----
now since nfo files tend to include a fair bit of of ASCII art in them, i was wandering if there's a way to preserve the spaces in this file, so the ASCII art is preserved.
thanks
--
The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php