I have a function that takes a piece of text from the database and puts it into a textarea, I'm trying to put a symbol like '>' beside very line of text thats taken from the database and put into the textarea to show its taken from the database, can anyone help?
Add character to every line of text?
Collapse
X
-
Hi.
First of all, you can not put the symbol ">" into your HTML output without causing all sorts of problems. It is a reserved character.
Use the HTML symbol ">" instead. (Without the quotes.)
I'm not quite getting what you are trying to accomplish here.
Do you want to put ">" before every line of text inside your textbox?
If so, try adding the HTML symbol after each new-line character.
(Replacing all occurences of "\n" with "\n>" should do that. Again, without the quotes)
If not, please elaborate.
Remember, we like code examples and error messages ;]Comment
-
I understand about the >. Ok I'll try and explain it better. I have a textarea on a page, when the page loads it get a a string, it can be a small or large string, the string is put into the textarea like below:
Code:echo '<textarea name="body" cols="75" rows="10">'.getText().'</textarea>';
The textare is a message reply box so the text being taken from the database is the received message, i need to add '>' to show its the received text so when a user enters new text you can tell the difference.
Hope this makes it a bit easier too understand.Comment
-
Ok, so you want the old message, the one from the database, to be sent along with the new text?
Somewhat like:
> This is some text from the database.
> A text that should appear quoted.
> Which means each line should start with
> a ">" symbol.
This is a new message.
Something the current use would type
into the textarea.
If there are no new-lines (if the text is one long line), you could split it into lines using the wordwrap function, and have the function add the > symbol on every new line.Comment
-
Heres the function i was trying to use but with no luck:
Everytime data is entered into the database it adds a <p></p> to every line, if you get me?
Code:function formatReplyText($msg) { $msg = str_replace("<p>>>",">>>",$msg); $msg = str_replace("<p>>",">>",$msg); $msg = str_replace("<p>",">",$msg); $msg = str_replace("</p>","<br /><p>",$msg); //$msg = wordwrap($msg, 12, "<br />\n"); //$msg = str_replace(">>",">>>",$msg); //$msg = str_replace(">",">>",$msg); //$msg = str_replace("<p>",">",$msg); //$msg = str_replace("</p>","<br />\n",$msg); return $msg; }
Comment
-
Is the return value of that supposed to go inside the <textarea>?
If so, then you should not be using HTML tags in it.
The value of a textarea should be formatted like normal text, not HTML.
So, if your message were something like:
Code:First line Second line Third line
[code=php]
<?php
function formatText($tex t) {
$text = wordwrap($text, 50);
$text = htmlentities($t ext, ENT_NOQUOTES, "UTF-8");
$text = ">" . str_replace("\n ", "\n>", $text);
return $text;
}?>[/code]
It would display the text in lines, each line no longer than 50 characters and each line prefixed with a > symbol.
If each line is also encapsulated in <p>..</p> tags, you might want to simply remove them by using the str_replace function, passing each of the tags with an empty string.
What if you ever decide to change the format? You would have to update you entire database to fit your new format, which puts it at risk of corruption and all sorts of other problems.
The database should always store the original text. Whatever alterations you need to make before it is displayed on your front-end application should be done on the way out.Comment
-
If your using the function I just posted, that would mean you are passing it an empty string. (Just made that mistake myself just now... misspelled the variable :P)
This:
[code=php]<?php
function formatText($tex t) {
$text = wordwrap($text, 70);
$text = htmlentities($t ext, ENT_NOQUOTES, "UTF-8");
$text = "> " . str_replace("\n ", "\n> ", $text);
return $text;
}
$message = <<<TEXT
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed elementum. Pellentesque mattis. Vestibulum nisl tortor, blandit ut, tincidunt at, fermentum at, massa. Praesent dictum semper justo. Fusce et massa. Sed nisi tellus, venenatis vel, condimentum nec, iaculis sollicitudin, turpis. Ut sit amet urna eget eros ullamcorper ullamcorper. Integer volutpat.
TEXT;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
</head>
<body>
<textarea cols="72" rows="10"><?php echo formatText($mes sage); ?></textarea>
</body>
</html>[/code]
Gives:
[code=html]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
</head>
<body>
<textarea cols="72" rows="10">> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed
> elementum. Pellentesque mattis. Vestibulum nisl tortor, blandit ut,
> tincidunt at, fermentum at, massa. Praesent dictum semper justo. Fusce
> et massa. Sed nisi tellus, venenatis vel, condimentum nec, iaculis
> sollicitudin, turpis. Ut sit amet urna eget eros ullamcorper
> ullamcorper. Integer volutpat. </textarea>
</body>
</html>[/code]Comment
-
Code:function formatText($text) { // code ... return $text . "\n\n"; }
Comment
Comment