在php中排列表格,对其进行排序并将其读入html文件

在php中排列表格,对其进行排序并将其读入html文件,php,html,html-table,file-writing,columnsorting,Php,Html,Html Table,File Writing,Columnsorting,我正在进行一个项目,需要传递名、姓、用户ID和逗号分隔值列表的表单数据。我需要获取这些值,检查它们的条件,并将它们排列到一个包含6列(姓、名、用户ID、最小值、最大值和平均值)的html表中。我还需要在html表中按姓氏排列这些条目,并将其读入文本文件。我的问题是,;如何将带有6个静态列的这些值读入.txt文件?另外,如何仅按一个值对这些值进行排序?我会将代码放在下面,但例如,如果我输入值:“Billy”、“Batson”、“abc123”、“1.0、2.0、0.7、20.0”,我的输出将如下所

我正在进行一个项目,需要传递名、姓、用户ID和逗号分隔值列表的表单数据。我需要获取这些值,检查它们的条件,并将它们排列到一个包含6列(姓、名、用户ID、最小值、最大值和平均值)的html表中。我还需要在html表中按姓氏排列这些条目,并将其读入文本文件。我的问题是,;如何将带有6个静态列的这些值读入.txt文件?另外,如何仅按一个值对这些值进行排序?我会将代码放在下面,但例如,如果我输入值:“Billy”、“Batson”、“abc123”、“1.0、2.0、0.7、20.0”,我的输出将如下所示:|姓:Batson | |名:Billy | |用户名:abc123 | |最小值:0.7 |最大值:20.0 |。我希望表格顶部的单词“姓氏”、“名字”、“用户ID”、“最小值”和“最大值”只显示一次,作为6列标题,而不是在每次迭代中显示。所以,如果有人能帮忙,我会把我的html表单和PHP页面的代码放在下面。上帝保佑

我的代码:

</head>
<body>
<form name="myForm" action="UpdateInfo.php" method="post">
<table>
<tr>
<td colspan="2" style="text-align: center;font-weight: bold"> User Info</td>
</tr>

<tr>
<td>First Name: </td><td><input type="text" name="first_name" title="Max 20 Characters, only A-Z or a-z"   /> </td>
</tr>

<tr>
<td>Last Name: </td><td><input type="text" name="last_name" title="Max 20 Characters, only A-Z or a-z" /></td>
</tr>

<tr>
<td>ID Number:</td><td><input type="text" name="user_id" title="Must be abc123 format!"/></td>
</tr>

<tr>
<td>List of values: </td><td><input type="text" name="values" />
</tr>


<tr>
<td colspan="2"><input type="submit" value="Submit"/></td>
</tr>
</table>
</form>
<script src="jquery.min.js" type="text/javascript"></script>
</body>
</html>

用户信息
名字:
姓氏:
身份证号码:
值列表:
我的PHP代码:

{
$fname = $_POST["first_name"]; //sets new variables = to our post data inputs
$lname = $_POST["last_name"];
$userID=$_POST["user_id"];
$valuesList=explode(',', $_POST["values"]);
$userID = str_split($userID);



//$valuesList = explode(',', str_replace(' ', '', $_POST["values"]));

//function validateFormat(array $valueList) : bool {
    //return array_reduce($valueList, function ($carry, $item) {
        //return $carry && preg_match('/^\d+\.\d{1}$/', $item) && ((float) $item >= 0.0) && ((float) $item >= 100.0);
    //}, true); //validateFormat function created

if(strlen($fname) > 19 || strlen($lname) > 19 )
{ //if the length of these variables is more than 20, end the script.
    //echo '<p style="color:red"> Characters For Names MUST be less than 50 characters</p>';
    echo '<p style="color:red"> First and Last name must be less than 20 characters</p>';
    exit();
}

if(!ctype_alpha($fname) || !ctype_alpha($lname))
{ //if the first and last names are NOT alphabetic then end script.
    echo '<p style="color:red"> First and Last name must alphabetical characters</p>';
    exit();
}

$ID_String = implode($userID); //converts ID to string.

if(strlen($ID_String) <> 6) //if the length of user ID is more or less than 7, end the script.
{
    echo '<p style="color:red"> User ID must contain 7 characters exactly</p>';
exit();
}

if(!ctype_alpha(substr($ID_String, 0,3))) //checks to make sure that the first three digits of the ID are alphabetical characters.
{
    echo '<p style="color:red"> User ID must be composed of alphabetic characters in the first 3 entries</p>';
exit();
}

if(!is_numeric(substr($ID_String, 3, 7))) //checks the last 3 characters of the ID and throws an error if they are not numerical digits.
{
    echo '<p style="color:red"> User ID must be composed of numeric characters in the last 3 entries</p>';
exit();
}

if(ctype_upper(substr($ID_String, 0,3))) // Checks our first three digits and if they are not lowercase, throw an error and close the program.
{
    echo '<p style="color:red"> User ID must be composed of lowercase characters in the first 3 entries</p>';
exit();
}

$valuesString = $_POST["values"]; //make values a string.

if(strlen($valuesString) > 49) // if the values length exceeds 50 characters, exit program with an error message.
{
    echo '<p style="color:red"> Values list cannot exceed 50 characters! </p>';
exit();

}



{
$fname=$\u POST[“first\u name”];//为POST数据输入设置新变量
$lname=$\u POST[“姓氏”];
$userID=$\u POST[“user\u id”];
$valuesList=explode(“,”,$_POST[“values”]);
$userID=str\u split($userID);
//$valuesList=explode(“,”,str_replace(“,”,$_POST[“values”]);
//函数validateFormat(数组$valueList):bool{
//返回数组\u reduce($valueList,function($carry,$item){
//返回$carry&preg\u match('/^\d+\.\d{1}$/',$item)&((float)$item>=0.0)&((float)$item>=100.0);
//},true);//已创建validateFormat函数
如果(strlen($fname)>19 | | strlen($lname)>19)
{//如果这些变量的长度超过20,请结束脚本。
//echo“

名称的字符必须少于50个字符; echo“

名字和姓氏必须少于20个字符; 退出(); } 如果(!ctype_alpha($fname)| |!ctype_alpha($lname)) {//如果名字和姓氏不是字母,则结束脚本。 echo“

名字和姓氏必须按字母顺序排列

”; 退出(); } $ID_String=内爆($userID);//将ID转换为字符串。 if(strlen($ID_String)6)//如果用户ID的长度大于或小于7,则结束脚本。 { echo“

用户ID必须精确包含7个字符; 退出(); } if(!ctype_alpha(substr($ID_String,0,3))/)检查以确保ID的前三位是字母字符。 { echo“

用户ID必须由前3个条目中的字母字符组成

”; 退出(); } if(!is_numeric(substr($ID_String,3,7))//检查ID的最后3个字符,如果它们不是数字,则抛出错误。 { echo“

用户ID必须由最后3个条目中的数字字符组成

”; 退出(); } if(ctype_upper(substr($ID_String,0,3))//检查前三位数字,如果它们不是小写,则抛出错误并关闭程序。 { echo“

用户ID必须由前3个条目中的小写字符组成

”; 退出(); } $valuesString=$\u POST[“values”];//将值设置为字符串。 如果(strlen($valuesString)>49)//如果值长度超过50个字符,则退出程序并显示错误消息。 { echo“

值列表不能超过50个字符!

”; 退出(); }