I'm not having much luck explaining what I want here ... a drawback of
emailing.  I know how to include files, I just wanted to include it in such
a way that my body text still wrapped around it.

I think I need to tackle this using HTML.

"Robert Sossomon" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> 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