你是什麼意思,通過獲取鏈接名稱?數據庫中的鏈接字段是否與名稱一起檢索?
這是基於我從你的含糊不清的問題百思不得其解:
你這是從數據庫中檢索名稱。也從數據庫中檢索id。將這些名稱顯示爲指向不同PHP頁面的鏈接。讓我們將php頁面命名爲user.php。這樣的鏈接將是:
$name = "You go this name from USER TABLE";
$id = "YOU GOT THIS ID FROM USER TABLE";
<a href="/user.php?userID=<?php echo $id ?>">$name</a>
現在,在您user.php的,retrive的ID
$name = $_GET["userID"]; // make sure you do some parsing to avoid sql injection
// Retrieve all the information about this guy like email address etc from the database
// put everything into a form with a Confirm button which when clicked will mail it to the individual
// I think you should be able to figure out the mail part.
那你需要知道什麼? – Shubham
過於寬泛。你究竟在問什麼? –
我只需要知道如何以更簡單的方式做到這一點。對不起,如果它很混亂。 –