如何使用 PHP 修改和插入表单元素?
我有一个分配给 PHP 中的变量的表单,如下所示:
$the_original_form = '
<form method="post" action="whatever.php">
<input type="text" name="iamtextfield" id="textisme">
<input type="file" name="iamfilefield" id="fileisme">
<input type="hidden" name="hideme" value="nope">
</form>
';
我有第二个变量:
$put_me_on_the_top = '<div class="getinme">';
第三个变量:
$put_me_on_the_bottom = '</div><div class="justsomethingelse">hi there</div>';
以及修改后的表单元素:
$i_have_changed = '<input type="file" name="filepartdeux" id="iamabetterfile">';
我想结束:
$the_modified_form = '
<form method="post" action="whatever.php">
<input type="text" name="iamtextfield" id="textisme">
<div class="getinme">
<input type="file" name="filepartdeux" id="iamabetterfile">
</div>
<div class="justsomethingelse">hi there</div>
<input type="hidden" name="hideme" value="nope">
</form>
';