2個關於來自MySQL表的加密/解密值的查詢。對加密的MySQL表進行排序和查詢
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或其他你能推薦的東西。