我的数据库中有id
,name
和surname
,然后我希望每行上都有一个按钮,该按钮会将行数据发送到某人的电子邮件(例如id:1。Name:John )。
<?php
`$conn = mysqli_connect('localhost','root','','test')`;
$query = "SELECT * FROM user";
$results = mysqli_query($connect, $query);
$check_results = mysqli_num_rows($results);
if ($check_results > 0) {
while ($row = mysqli_fetch_array($results)){
$id = $row['id'];
echo "<input type='button' name='send' value='$id'>";
}
}
if(isset($_POST['send'])) {
// then send data(email) on a row where button is clicked
}
?>
答案 0 :(得分:0)
创建一个表单,在您的php文件中设置操作以发送电子邮件,为每行创建具有id值的隐藏输入,然后您的带有提交类型的按钮将起作用。