关于 MySQL 表中加密/解密值的 2 个查询。
1)我怎样才能对这些进行排序,因为值是加密的 ORDER BY 已经出来了,并且 JavaScript 不会正确排序 a)和 b)。下面的代码,请原谅格式。
2)我将如何查询“值之间”
提前致谢。
<html>
<body>
<table>
<tr>
<?php
// Connects to Server, queries all on that table.
$db_connect=mysql_connect("$host", "$username", "$password")or die("Sorry, Poor or No Connection");
$db_found=mysql_select_db("$db_name")or die("Sorry, Cannot Connect to Database");
$result=mysql_query("SELECT * FROM $tbl_name");
// Creates Table to be used
echo "
<th>First Name</th>
<th>Last Name</th>
</tr>";
while($row = mysql_fetch_array($result)) {
// Decrypts table IDs
$dec_FName = decrypt($row['FName'],'SECUREKEY');
$dec_LName = decrypt($row['LName'],'SECUREKEY');
echo "<tr>";
<echo>"<td>" . $dec_FName . "</td>";
<echo>"<td>" . $dec_LName . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close();
?>
</body>
</html>
我怀疑需要创建一个数组。我很乐意使用 JavaScript、PHP 或您可以推荐的任何其他东西。