Jump to content
  • 0

как засунуть отформатированный текст в textarea


Alex_Mak
 Share

Question

условие такое: нужно в текстариа в режиме ридонли (если есть какой-то эквивалент, заменяющий текстариа, коротый будет отображать текст с полосой прокрутки, то он мне, наверное, больше подойдет)

вставить текст из БД, но так, чтобы где есть болд -- там отображался болд, если италик -- то италик.

пробовала так:

<textarea cols='63' rows='9' readonly="readonly" name='Post' class='textinput' > html_entity_decode($conditions); </textarea>

в $conditions содержиться например такое:

<b>1. Права и обязанности сторон</b><br />

<i>1.1. Участник обязан</i><br />

1.1.1.Обязательство №раз<br />

1.1.2.Обязательство №два<br />

1.1.3.Бла-бла-бла<br />

<i>1.2.Участник имеет право</i>

и т.д.

а в форме в браузере отображается вообще страшно:

html_entity_decode(<b>1. Права и обязанности сторон

</b><br /><i>1.1. Участник обязан

</i><br />1.1.1.Обязательство №раз

<br />1.1.2.Обязательство №два

<br />1.1.3.Бла-бла-бла

<br /><i>1.2.Участник имеет право

</i><br />1.2.1.Право №раз

<br />);

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

боюсь, вы меня не правильно поняли.

скопипастите код:

<?php 
$orig = "I'll \"walk\" the <b>dog</b> now";
$a = htmlentities($orig); // эквивалентно: $a = htmlspecialchars($orig);
$b = html_entity_decode($a);
echo $a; // I'll "walk" the <b>dog</b> now
echo "<br>";
echo $b; // I'll "walk" the <b>dog</b> now
?>
<br />
<textarea> <? echo $b; ?></textarea>

Мне нужно чтобы строчка в текстариа была такой же, как и вторая строчка. без тегов.

Link to comment
Share on other sites

  • 0

Так подойдет?

<?php 
$orig = "I'll \"walk\" the <b>dog</b> now";
$a = htmlentities($orig); // эквивалентно: $a = htmlspecialchars($orig);
$b = html_entity_decode($a);
echo $a; // I'll "walk" the <b>dog</b> now
echo "<br>";
echo $b; // I'll "walk" the <b>dog</b> now
?>
<br />
<div style="border:#666666 solid 1px; width:200px; height:50px; overflow:auto;">
<?
echo '<p>'.$b.'</p>';
echo '<p>'.$b.'</p>';
echo '<p>'.$b.'</p>';
echo '<p>'.$b.'</p>';
?>
</div>

Edited by rus
Link to comment
Share on other sites

  • 0
если есть какой-то эквивалент, заменяющий текстариа, коротый будет отображать текст с полосой прокрутки, то он мне, наверное, больше подойдет

Аааа, ну усе понял.

Просто он не смог применить htmlspecialshars вот и все.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy