Just place

<?php
  include "box_info.php";
?>

In your web page in the location where the little box is.  Word wrap
typically only happens with images though, so you may have to turn your
text into an image, in which case you could just use a javascript
commands to change the image as needed.  If you are including the text
into a table it would be something like:

<table border=0>
<tr><td>some text that keeps running and running</td></tr>
<tr><td><?php
  include "box_info.php";
?>
</td></tr>

HTH,
Robert

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to