至少你愿意学习新事物,这很好。
使用三元运算和 isset 函数来检查您的帖子是否真的到位:
$overTimeHours = isset($_POST['overtimehours']) ? $_POST['overtimehours'] : false;
$lieuTimeHours = isset($_POST['lieutimehours']) ? $_POST['lieutimehours'] : false;
if($overTimeHours != false && $lieuTimeHours != false)
{
// Proceed ; checkpoint #1
}
else
{
// The values were not posted, do some error handling.
}
因此,此时,在检查点 #1 内,您将执行以下操作:
foreach($overTimeHours as $key => $value)
{
dbQuery("UPDATE $TABLE SET ot_hours='$value', ot_status=1, ot_submitdate='$ot_submitdate' WHERE trans_num=$key AND uid='$contextUser' AND (ot_status=0 OR ot_status=1 OR ot_status=3)");
}
foreach($lieuTimeHours as $key2 => $value2)
{
dbQuery("UPDATE $TABLE SET lieu_hours='$value2', ot_status=1, ot_submitdate='$ot_submitdate' WHERE trans_num=$key2 AND uid='$contextUser' AND (ot_status=0 OR ot_status=1 OR ot_status=3)");
}
- 如果您只有一个要解析的数组,您可能不会觉得运行一个 for 循环很难看。
现在你有两个数组(显然),所以如果一个数组的最小循环量是一个 for 循环,那么你需要的两个数组的最小循环量必须是两个。这些数组是不相关的,因此您不能使用其中一个来更轻松地解析另一个数组。
通过 $overTimeHours 解析
$overTimeHours as $key => $value
假设您确实需要数组中的键和值,这是您可以做的最短的事情。同样的故事也适用于lieuTimeHours
不要像这样在查询中插入变量:
SET lieu_hours='$value2'
一个体面的程序员(或者一个 12 岁的孩子)可以很容易地在你的数据库中输入这样的内容:
yo';DROP TAbLE users;--
或类似的东西,从数据库中删除数据。您必须使用准备好的语句以防止受到基本 SQL 注入的攻击。
准备好的语句在大多数情况下都可用,但我强烈建议使用 PDO 或 mysqli 语法。
以下是如何创建 PDO 连接的示例:
// Usage: $db = connectToDatabase($dbHost, $dbName, $dbUsername, $dbPassword);
// Pre: $dbHost is the database hostname,
// $dbName is the name of the database itself,
// $dbUsername is the username to access the database,
// $dbPassword is the password for the user of the database.
// Post: $db is an PDO connection to the database, based on the input parameters.
function connectToDatabase($dbHost, $dbName, $dbUsername, $dbPassword)
{
try
{
return new PDO("mysql:host=$dbHost;dbname=$dbName;charset=UTF-8", $dbUsername, $dbPassword);
}
catch(PDOException $PDOexception)
{
exit("<p>An error ocurred: Can't connect to database. </p><p>More preciesly: ". $PDOexception->getMessage(). "</p>");
}
}
现在您可以初始化数据库变量:
$host = 'localhost';
$user = 'root';
$databaseName = 'databaseName';
$pass = '';
现在您可以通过以下方式访问您的数据库
$db = connectToDatabase($host, $databaseName, $user, $pass); // You can make it be a global variable if you want to access it from somewhere else.
现在您可以创建一个接受准备好的语句的查询:
$query = "UPDATE :table SET ot_hours=:ot_hours, ot_status=1, ot_submitdate=:ot_submitdate WHERE trans_num=:key AND uid=:contextUser AND (ot_status=0 OR ot_status=1 OR ot_status=3);";
现在您可以轻松地准备它,将变量执行到查询中,而无需使用 sql 注入(区别在于:未准备好的查询运行命令,而准备好的查询是纯字符串):
$statement = $db->prepare($query); // Prepare the query.
$success = $statement->execute(array(
':table' => $TABLE,
':ot_hours' => $ot_hours,
':ot_submitdate ' => $ot_submitdate ,
':key' => $key,
':contextUser' => $contextUser
)); // Here you insert the variable, by executing it 'into' the prepared query.
if($success)
{
// Update was successful.
]
else
{
// Update was not successful, feel free to catch an PDOException $PDOexception
}
我还注意到我添加了一个“;” 在你的脚本的末尾,这不是必需的,但我觉得它更安全,确保告诉你你的执行已经完成并且你不想要任何与后续相关的东西(即使它不是来自你)。
我希望我回答了您的问题(并希望超出此范围),我希望您会考虑我所说的:) 如果有任何问题,请随时提问。
另外,如果我在写这个答案时可能说错了什么,请不要犹豫纠正我。