Jump to content
  • 0

Никакой реакции на <i></i>


bobo
 Share

Question

Добрый день. При загрузке данных из БД обрабатываю их следующим образом:


$pmtext = nl2br($arraylistpm['pmtext']);
$pmtext = str_replace("[I]","<i>",$pmtext);
$pmtext = str_replace("[/I]","</i>",$pmtext);

В итоге фактически тэги <i></i> добавляются, а браузер на них никак не реагирует. Где собака зарыта ?

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Да пхп возможно и не при чем :blush:

Времени разбираться нету, поэтому сделал так:

Вывод из БД


$pmtext = str_replace("[I]","<div style='font-style:italic; color:#666; border:1px #999 solid; padding:6px;'>",$pmtext);
$pmtext = str_replace("[/I]","</div>",$pmtext);

Запись в БД


$rtext = str_replace("<div style='font-style:italic; color:#666; border:1px #999 solid; padding:6px;'>","[I]",$rtext);
$rtext = str_replace("</div>","[/I]",$rtext);

Сильно страшно ?:)

Link to comment
Share on other sites

  • 0

OMG! Очень сильно страшно! Проблема, видимо, не в HTML, а в CSS. Наверное для <i> прописано font-style: normal;. Но это не повод заменять такой простой тег такой портянкой! Ох уж эти PHP-программеры :blush:

  • Like 1
Link to comment
Share on other sites

  • 0

Может вместо такой страшной конструкции:

<div style='font-style:italic; color:#666; border:1px #999 solid; padding:6px;'>

Использовать <span class="i">?

Правда, всё-таки лучше просто в css залесть и посмотреть почему <i> не отображается курсивом и добавить стиль если надо.

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