Jump to content

Formatting displayed txt CSS and wordwrap


davemcc

Recommended Posts

Hello, can anyone help me? I am using the follwing to display the contents of try.txt. It displays fine but I cannot alter the font via CSS, any ideas? Also I need the displayed txt to wordwrap within its DIV but i cannot figure it out!

 

<?php  $lines = file("try.txt");

 

echo '<pre>';

 

foreach($lines as $line)

  echo str_replace("<", "<", $line)."\n";

 

echo '</pre>'; ?>

 

Any help would be great!

 

Many thanks

 

Dave

Just set your style with a css file. for example

 

#textcontainer {
font-family: verdana, arial, serif;

};

 

Then in your page where u want to echo the text you just need to echo it inside a div tag like so:

 

<div id="textcontainer">
<?php echo "$lines" ?>
</div>

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.