Jump to content

newtothis19

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

newtothis19's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello everyone, I have a problem hope you can help. I'm using a forum (phpbb) but I want to bring the information from the forum onto a php web page. But when I do it doesn't come out formatted, just as a lump of text. Now I found <pre> tags on google searching for an answer and that works in formatting the text with paragraphs and stuff. But when the text string hits the end of the table, instead of going to the next line it strenches the table and the page out. Leaving me with a big H scroll and no way to fix it. Any ideas on what I need to do to make it format properly? here's a peice of the coding: $result2 = mysql_query("SELECT * FROM phpbb_posts_text WHERE post_id='$post' LIMIT 1"); while ($row = mysql_fetch_array($result2)) { $subject=$row["post_subject"]; $body=$row["post_text"]; echo "<b>",$subject,":</b><pre width='100'>",$body,"</pre>"; } Thanks
×
×
  • 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.