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>
';
2 番目の変数があります。
$put_me_on_the_top = '<div class="getinme">';
そして 3 番目の変数:
$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>
';