我在我的 template.php 中编写了一个 html 表单,并且我有这样的 script.php:
<?php
include "index.php";
if (isset($_GET['numOfPictures'])){
$times = $_GET['numOfPictures'];
echo '<form name="upload" action="code.php" method="POST">';
for ($i = 1; $i <= $times; $i++){
echo '<br />select picture number '.$i.': <br />';
echo '<input name="file'.$i.'" type="file" />';
}
echo '</br><input name="submitFiles" type="submit" />';
echo '</form>';
}
?>
当我提交我的 3 个数字选项选择表时,我想在同一个 DIV 中附加。之后,我编写的 PHP 脚本在代码中添加了另一种形式。
在我的页面中发生的情况是脚本在页面末尾添加了新表单。
我怎么做?
我不想在我的 template.php 中编写代码,我想让它们分开。