您好我是新來使用PHP和即時通訊仍然試圖找到我的方式圍繞它。我有一個表單,我想更新數據庫中的信息。我有一個用戶輸入id的文本框,我想比較用戶放入數據庫中Id的id,以便更新該用戶的信息。我一直在四處搜尋,但無法找到我在找什麼。比較用戶輸入到一個變量在PHP
-1
A
回答
-3
假設你有文件在下面的公式formular.html具有將信息發送到文件receive.php
<form action="receive.php" method="post">
Name : <input type="text" name="user_id" />
<input type="submit"/>
</form>
根據的事實,公式推的發送方法在這裏後。這裏的receive.php怎麼可能看起來像
<?php
// receiving information
$id = $_POST['user_id'];
// connecting to database to retrive id to be compare
$link = mysql_connect("localhost","root","");
mysql_select_db("sampleDatabase",$link);
// writing your query
$query = "SELECT id FROM sampleTable WHERE 1;";
// executing your query
$result = mysql_query($query, $link);*
// fetching the result
$row = mysql_fetch_array($result);
// testing the similarity between information from the database and the one from the formular
if($id == $row['id']) // make a decision
else // make another decision
// for dealing whit many line on the result use the following code
while($row = mysql_fetch_array($result)){
// make a stuff with $row
}
// may be you could want to do a redirection if so the use the following header function
header("Location: formular.html");
?>
相關問題
- 1. PHP比較用戶輸入與多個變量
- 2. PHP比較CSV和用戶輸入
- 3. PHP - 比較兩個變量
- 4. 如何比較向用戶輸入要求用戶輸入的變量?
- 5. 如何比較兩個輸入變量與MySQL存儲值(PHP)?
- 6. 比較變量PHP
- 7. 比較用戶輸入
- 8. 在Wordpress中比較兩個php變量
- 9. 將輸入與變量進行比較 - PHP
- 10. php中變量的比較
- 11. 比較JavaScript和PHP變量
- 12. PHP會話變量比較
- 13. PHP變量比較== VS ===
- 14. 從用戶輸入寫入一個javascript變量到文檔
- 15. 無法比較兩個PHP變量
- 16. 如何在C中輸入/輸出和比較「long long」變量?
- 17. 將一個javascript函數與一個php變量進行比較
- 18. HTML文本輸入發送一個PHP變量以及用戶的輸入
- 19. 比較用戶輸入一個Python列表
- 20. 比較ArrayList和用戶輸入
- 21. 比較日期用戶輸入
- 22. 比較用戶輸入與Java
- 23. 比較用戶輸入的字符C
- 24. 比較用戶輸入列表python3
- 25. C++ - 讀取和比較用戶輸入?
- 26. 比較用戶輸入與字符串
- 27. 獲得比較!和用戶輸入
- 28. PHP在getimagesize()函數中比較變量
- 29. 在PHP中比較會話變量
- 30. 比較兩個變量使用IF/IF..ELSE語句的PHP和插入到MYSQL
你有什麼這麼遠嗎?熟悉PHP/SQL?我們需要一個出發點來回答你的問題。否則你必須先使用一些教程。 –