我使用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; ?>
如果有人知道如何执行此操作,请帮助我。我会非常感激。
答案 0 :(得分:4)
您可以在<textarea>
开始和结束标记之间添加值。
<textarea id="tresc_area" name="tresc" cols="45" rows="10" ><?php print $tresc; ?></textarea>