我在 php 页面中有一个表单,我想在其中自动将 URL 参数添加到字段中。地址看起来像:
http://www.websiteaddress/admin/add_data.php?file_name=image.jpg
页面 add_data.php 包含以下表单(为简洁起见,我删除了一些列)。我想要实现的是参数 file_name 是输入到包含以下内容的单元格中的数据:
<input type="text" name="image" id="image" value="<?php echo $row_getShip['image']; ?>" maxlength="150" />
这样当单击“插入”时,图像文件的名称已经填写在正确的框中
请帮忙!
<form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
<p> </p>
<table width="1312" border="0">
<tr>
<td><input type="text" name="image" id="image" value="<?php echo $row_getShip['image']; ?>" maxlength="150" /></td>
<td><div align="right">
<input name="hiddenField" type="hidden" id="hiddenField" value="<?php echo $row_getShip['ship_id']; ?>" />
<input type="hidden" name="MM_update" value="form1" />
<input type="submit" name="insert" id="insert" value="Update" />
</div></td>
</tr>
</table>
</form>