Long URL breake my html

This is a discussion on Long URL breake my html within the PHP Language forums, part of the PHP Programming Forums category; Hello, I have small BB and when someone post long URL it breaks complete forum. Is there anything I can ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-07-2004
dr. zoidberg
 
Posts: n/a
Default Long URL breake my html

Hello,

I have small BB and when someone post long URL it breaks complete forum.
Is there anything I can do.

TNX


Reply With Quote
  #2 (permalink)  
Old 01-07-2004
Christopher Vogt
 
Posts: n/a
Default Re: Long URL breake my html

what do you mean it "breaks" the forum?

try your luck with html_entities(), html_entity_decode(), urlencode()
and urldecode() or try to detect urls in the post via regex or some
library you'll find in the web, there are lots of such libraries. When
you detect it you can href it an shorten the shown text for example

Hope this helps,

Chris

dr. zoidberg schrieb:
> Hello,
>
> I have small BB and when someone post long URL it breaks complete forum.
> Is there anything I can do.
>
> TNX
>
>

Reply With Quote
  #3 (permalink)  
Old 01-07-2004
Pedro Graca
 
Posts: n/a
Default Re: Long URL breake my html

dr. zoidberg wrote:
> Hello,
>
> I have small BB and when someone post long URL it breaks complete forum.
> Is there anything I can do.


<?php
// ...
$limit = 78; // max length of allowed URLs
// ...

if (strlen($url) > $limit) {
exit('Sorry, your URL is too long for this BB.');
}
// ...
?>
--
--= my mail box only accepts =--
--= Content-Type: text/plain =--
--= Size below 10001 bytes =--
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 07:22 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0