如何为textarea增加价值

时间:2012-12-17 08:15:56

标签: php ajax

  

可能重复:
  How to add default value for html <textarea>?

我使用ajax将数据从表单发送到数据库,我有probem:

<input class="input" type="text" name="do_kogo" id="odbiorca" size="25" value="<?php print $odbiorca; ?>" />
<input class="input" id="temat" type="text" name="temat" size="25" value="<?php print $temat; ?>"/>
<textarea id="tresc_area" name="tresc" cols="45" rows="10" ></textarea>

正如你所看到的,我正在将值更改为等效的PHP,我不知道如何更改textarea的值以放置<?php print $tresc; ?>如果有人知道如何执行此操作,请帮助我。我会非常感激。

1 个答案:

答案 0 :(得分:4)

您可以在<textarea>开始和结束标记之间添加值。

<textarea id="tresc_area" name="tresc" cols="45" rows="10" ><?php print $tresc; ?></textarea>