我想要獲取單元格值,它位於用戶輸入的行和列號的交點處,就像在矩陣中一樣,如果用戶輸入第5行和第4列,那麼我的結果應該顯示單元格中出現的值[5.4]。在行和列相交處顯示單元格的值
我得到的行和列數:
<td>Please enter the temperature:</td>
<td><input type="text" name="temp" /></td>
<td>Please enter the column:</td>
<td><input type="text" name="col" /></td>
<td><input type="submit" name="go" /></td>
我正在重定向這些值find.php頁面,在這裏我這樣做:
$entry1 = $_POST['temp'];
$entry2 = $_POST['col'];
$result = mysql_query("SELECT * FROM tables WHERE Temperature LIKE '".$entry1."'
AND COLUMN_NAME = '".$entry2."' ");
和展示我的結果作爲
我知道我犯了很多錯誤,但做n不知道如何解決它們。請讓我看看。
你需要用'mysql_fetch_array'獲取價值.... O,O- –
爲什麼你使用'LIKE'比較值溫度?這是錯字還是有原因 – krishna
@Cheezburger我正在使用'mysql_fetch_array'獲取我的結果。 – Nouman