Jump to content

Removing extra white space in Text area boxes


kevinkhan

Recommended Posts

I have a form on my website with a text area input field. I am looking for a php function that can strip the formating from the Text and take out line breaks and paragraphs so that when i retrieve the information from database i can change it from this

 

_____________________________________

 

FANTASTIC BARGAINS
ALL
SPRING / SUMMMER

2010
...... STOCK

NOW
REDUCED

 

to this

 

FANTASTIC BARGAINS ALL SPRING / SUMMMER 2010...... STOCK NOW REDUCED

 

 

does anyone know what fucntion i could use for this?

 

i have this so far but it doesnt seem to be working

 

$descr = '';
            if(strlen($row['description']) > DESCR_LIMIT) {
                $descr = (substr($row['description'], 0, DESCR_LIMIT).'...');
            } else {
                $descr = $row['description'];
            }
            $descr = preg_replace("/(\r\n)+/", " ", $descr);
            $descr = preg_replace("/ +/", " ", $descr);
            $status .= $descr;  

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.