ShanesProjects Posted October 18, 2006 Share Posted October 18, 2006 Why don't it word wrap it?[code]$Comment2 = wordwrap($Comment, 40, "<br />\n");echo"<center><table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='35%' height='100'> <tr> <td width='100%' height='18' bgcolor='#808080'> <p align='center'>Posted by: <font color='Black'><a href='mailto:$EMail'>$First_Name</a></font></td> </tr> <tr> <td width='100%' height='81' bgcolor='#C0C0C0' align='left' valign='top'> <p align='center'>$Comment2</td>[/code] Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/ Share on other sites More sharing options...
tomfmason Posted October 18, 2006 Share Posted October 18, 2006 I don't see why that would not work. That appears to be a text book use of word wrap. I see that you edited your post.. Did you already fix the problem?Tom Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110402 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 No, but I don't understand why the news page wordwraps and the news comments don't. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110403 Share on other sites More sharing options...
tomfmason Posted October 18, 2006 Share Posted October 18, 2006 Are you getting any errors?? Have you tried placing an echo after the word wrap? Also, please post the code that works so that I may compare it..Tom Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110406 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 Ok, I will in a few minutes. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110410 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 News.php[code]$News=$row["News"];$News2 = wordwrap($News, 80, "<br/>\n");$sql = mysql_query("SELECT * FROM news_comment WHERE Title = '$Title'");$CommentCount = mysql_num_rows($sql);echo"<center><table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='500'> <tr> <td width='100%' align='center' bgcolor='#808080'> <p style='margin-top: 0; margin-bottom: 0'><font color='#C0C0C0'>Title:</font> <font color='Black'>$Title </font> <p style='margin-top: 0; margin-bottom: 0'><font color='#C0C0C0'>Date:</font> <font color='Black'>$Date_Added</font><br /> <font size='1'><a href='Add_News_Comment.php?Title=$Title'>Add A Comment</a></font>/<font size='1'><a href='View_News_Comments.php?Title=$Title'>View Comments(</font><font size='1' color='Red'>$CommentCount</font><font size='1'>)</font></a></td> </tr> <tr> <td width='100%' align='center' bgcolor='#C0C0C0' bordercolor='#000000'><font color='Blue'>$News2</font></td> </tr> </table></center><br />";[/code]View_News_Comments.php[code]$Comment=$row["Comment"];$Comment2 = wordwrap($Comment, 40, "<br />\n");echo"<center><table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='500'> <tr> <td width='1000' align='center' bgcolor='#808080'> <p style='margin-top: 0; margin-bottom: 0'><font color='#C0C0C0'>Posted by:</font> <a href='mailto:$E_Mail'>$First_Name</a> </td> </tr> <tr> <td width='1000' align='center' bgcolor='#C0C0C0' bordercolor='#000000'><font color='Blue'>$Comment2</font></td> </tr> </table></center><br />";[/code] Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110411 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 OMG I replaced the news code with the comment code. Now I got to remake that comment table. I'll reply when the codes above are correct. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110413 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 Ok, the codes I posted 2 replys above are correct now you can compare. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110414 Share on other sites More sharing options...
tomfmason Posted October 18, 2006 Share Posted October 18, 2006 I don't see where it is going wrong... When you say that it is not word wrapping, what is happening? They both look fine to me.Tom Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110418 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 What browser are you using? Sorry for the late reply had to do something. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110425 Share on other sites More sharing options...
tomfmason Posted October 18, 2006 Share Posted October 18, 2006 Fire Fox Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110426 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 I use IE. That may be why but I want it to work for IE to. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110428 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 Thanks for trying I'll try somethings. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110429 Share on other sites More sharing options...
tomfmason Posted October 18, 2006 Share Posted October 18, 2006 I do most of my developing in Fire fox then test in IE. The reason that I do this.. Almost every thing that works fine in FireFox will work fine in IE but not the other way around. So it is best to develop with Fire Fox in mind and then to fix any IE errors. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110430 Share on other sites More sharing options...
ShanesProjects Posted October 18, 2006 Author Share Posted October 18, 2006 I fixed it. Link to comment https://forums.phpfreaks.com/topic/24285-word-wrap-problem-1/#findComment-110434 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.