vote up 0 vote down star

I have an input form with two textareas allowing a user to type in words separated by commas in each.

<form action="http://www.example.com/output.php" method="post">
<table border="0">
<tr>
<td>
<h3 class="title">Prefix</h3>
<textarea cols="34" rows="8" name="cat[]"></textarea></td>
<td>
<h3 class="title">Suffix</h3>
<textarea cols="34" rows="8" name="cat[]"></textarea></td>
</tr>
</table>

Enter words separated by a comma. 

<input type="submit" value="Go" /> </form>

It then passes these to the output form which explodes the words from the commas and then concatenates them together until all possible permutations of the words are created. It then prints out the results into a textarea. My problem is that the output (whilst correctly formatted and have the linebreaks in between each permutation) has a br tag at the end of each line. Eg.

testtest2<br />
testtest2<br />
testtest4<br />
testetest2<br />
testetest2<br />
testetest4<br />

Output form:

$cat = $_POST['cat']; //trait set for textbox inputs
foreach(array_keys($cat) as $key){
$cat[$key] = explode(",", str_replace(' ','',$cat[$key]));
}    

function showCombinations($string, $traits, $i)
{
if ($i >= count($traits))
echo trim($string)."\n";  
else
{
foreach ($traits[$i] as $trait)
showCombinations("$string$trait", $traits, $i + 1);
}
}
?>

<form name=form1 method=post action=''''>
<textarea><?php ShowCombinations('', $cat, 0); ?></textarea>
</form>
  1. When I remove the textarea tags for the output it works fine.
  2. When I leave the textarea tags and remove/replace echo trim($string)."\n"; with "\r" or 'n' or "\n\r", the
    disappears but I also lose the linebreak
  3. Replace echo trim($string)."\n"; with echo nl2br($string); then same result as 2.
  4. Replace with echo nl2br($string)."\n"; then same result as 1.

Would appreciate any help. My noob brain is about to implode.

flag

5 Answers

vote up 0 vote down check

I'll preface this by saying I use Blogger not Wordpress but I imagine there are similarities. In Blogger there is a setting to convert line breaks into <br> tags. I guess it's convenient if you're not putting code snippets and the like in (if you're blogging about cats or something) but not so much for programming. I had to turn it off and put in my paragraph tags, etc manually.

Here is one less than ideal solution, which also mentions the issue of Wordpress inserting <br> tags in forms.

link|flag
I tried different combinations of the suggested solutions but I think you're on the money, cletus. When I took the code out of wordpress and onto a plain php/html page, it worked. – baselinej70 May 14 at 23:57
Thanks to all for your help! :) – baselinej70 May 14 at 23:58
vote up 0 vote down

It took some looking, but after some time I was able to pinpoint these two locations (lines 154 & 165 - WP 2.8) in the wp-includes/formatting.php file.

154 	$pee .= '<p>' . trim($tinkle, "\n") . "</p>\n"; //<-- before
154 	$pee .= trim($tinkle, "\n") . "\n"; //<-- after

165 	$pee = preg_replace('|(?<!<br />)\s*\n|', "<br />\n", $pee); // optionally make line breaks <-- before
165 	$pee = preg_replace('|(?<!<br />)\s*\n|', "\n", $pee); // optionally make line breaks <-- after

This took care of the paragraph and and break tags in my textarea field.

link|flag
Seriously? $pee and $tinkle? I hate Wordpress code. – Mike B Aug 8 at 0:58
vote up 0 vote down

I believe \n should work. Perhaps you do not have or have an incorrect doctype.

Example: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

If all else, I like lock's answer. You could us a <div> and you could even style it to look similar to a <textarea> (or even better!)

link|flag
I think \n will just put it on a new line in the html but it will not put it on a new line when viewed since blank space is just ignored. – Josh Curren May 13 at 1:21
T Pops - checks out "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "w3.org/TR/xhtml1/…;. Might have to resort to dressing up the DIV as per Lock's suggestion. Thanks! – baselinej70 May 13 at 7:02
vote up 1 vote down

I think the <br /> tag is what you want in this case. Newline characters like \n and \r don't do anything in HTML - all whitespace, including newlines, is ignored. The <br /> tag is essentially the HTML equivalent - it stands for "break". I don't know too much about PHP specifically, so I don't know why it's putting the <br /> there for you automatically, but that's the correct HTML for what you're describing.

Technically, there are better ways to format your output then using those tags, but that's more of an advanced topic. If you are a bit new to this, like you said, then just get it working this way for now, and then maybe sometime down the road you can learn about proper semantic HTML markup, CSS styling, etc.

link|flag
vote up 0 vote down

why not display the results on a <div> perhaps or a <p> ??

link|flag
Hey lock, that's an option/workaround but I've got some javascript that allows the user to click the results and select all>copy to clipboard so from a usability perspective I'd still like to provide a 'home' for the output. – baselinej70 May 13 at 1:12
ehehe i dont want to be pesky but divs allow that function too right? – lock May 13 at 1:43
Oops - does it? I'll have a look right now. Thanks for the tip. – baselinej70 May 13 at 2:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.