我有一个 html/php 页面,它读取服务器上的文件名,收集用户输入,并在用户单击“提交”按钮时返回结果。返回的结果将被解析并显示在页面中的表格中。某些功能是用javascript实现的,顺便说一句。
这就是 html/php 通常的工作方式。现在我需要另一个允许用户指定名称的字段,并且我需要使用将从服务器上的文件 NAMES 中读取的附加信息“刷新”页面。为了措辞,让我称这个 ShowExtraName 函数。
在 ShowExtraName 之前,我有这样的 html/php 代码(对不起格式,不知道如何在帖子中编写 html 标签):
<html>
<head>
<javascripts added here>
<table>
<div>
<form>
<continue html layout here>
<checkboxes with php reading file NAMES from server --- line XXYY>
<submit>
<php script to check user input and query server, then display returns in table. This section is blank before submit since certain input fields are not "isset".>
现在我的问题是如何/在哪里可以添加 ShowExtraName。我相信它需要是 php,因为我不仅需要确定用户指定的名称,还需要从服务器获取附加和相关信息并将其显示在 XXYY 行中。
希望我描述清楚。谢谢您的意见!