本文介绍了使用PHP变量自动填充Textarea的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何用两个PHP变量,$ submission和$ fullurl自动填充下面的文本区域?
How do I auto-populate the text area below with two PHP variables, $submission and $fullurl?
<form method='post' action='index.php'>
<br />
<textarea name="tweet" cols="50" rows="5" id="tweet" ></textarea>
<br />
<input type='submit' value='Tweet' name='submit' id='submit' />
</form>
推荐答案
< textarea>
s被赋予默认值,如下所示:
<textarea>
s are given default values like so:
<textarea>value</textarea>
因此,请使用以下内容:
So use something like:
<textarea name="tweet" cols="50"rows="5" id="tweet"><?php echo $submission ?> <?php echo $fullurl ?></textarea>
请注意,任何空格都表示为textarea,所以换行符会导致换行符文本框。
Note that any whitespace is represented as-is in a textarea, so newlines will result in newlines in the textbox.
这篇关于使用PHP变量自动填充Textarea的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!