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
I think this is what you're looking for:
echo '<div style="float: right;">'; include('someFile.php'); echo '</div> <div>'; //more content here that goes ot the left and bottom of the above div echo '</div>';
-- -- paperCrane <Justin Patrin>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php