繁体   English   中英

如何为每行插入按钮,以便可以将特定行的数据复制到数据库中

[英]How to insert button for every row so that the data for that particular row can be duplicated into the database

在问这个之前,我已经阅读了关于stackoverflow的几个问题。 我对php和mysql的了解很少,因此需要大量帮助。

因此,我需要为每个表行创建一个按钮,以便当用户单击“复制”按钮时,该行的数据将被复制到数据库中。 我怎样才能做到这一点?

demotable.php(//编辑//)

    <?php 
    require('connect.php');
    $query = "SELECT * FROM trade_history1 ";
    $result = mysql_query($query);
    echo "<table border = '1px'>"; // start a table tag in the HTML
    echo "<tr><td>" . "ID" . "</td><td>" . "Date" . "</td><td>" . "Type" . "</td><td>" . "Size" . "</td><td>" . "Currency Pair" . "</td><td>" . "Entry" . "</td><td>" . "Stoploss" . "</td><td>". "Take Profit" . "</td><td>" . "Date Close" . "</td><td>" ."Close" . "</td><td>" ."Profit/Loss"."</td><td>" ."Copy"."</td></tr>" ;  //$row['index'] the index here is a field name
    while($row = mysql_fetch_array($result)){   //Creates a loop to loop through results
    echo "<tr><td>" . $row['id'] . "</td><td>" . $row['date'] . "</td><td>" . $row['type'] . "</td><td>" . $row['size'] ."</td><td>" . $row['currency_pair'] ."</td><td>" . $row['entry'] ."</td><td>" . $row['stoploss'] ."</td><td>" . $row['takeprofit'] ."</td><td>" . $row['dateclose'] ."</td><td>" . $row['close'] ."</td><td>" . $row['profitloss'] . "</td></tr>";  //$row['index'] the index here is a field name
    }
    echo "</table>"; //Close the table in HTML
    mysql_close(); //Make sure to close out the database connection
    ?>
    <html>
<a href="copytrade.php?id=$_GET['id]"> View </a>
    </html>

copytrade.php

<?php

        require ('connect.php');

        $mysqli = new mysqli($database_hostname, $database_username, $database_password, $database_name) or exit("Error connecting to database"); 

        $stmt = $mysqli->prepare("INSERT INTO trade_history1 (size, date, type, currency_pair, entry, stoploss, takeprofit, dateclose,close,profitloss) 
                                      SELECT size, date, type, currency_pair, entry, stoploss, takeprofit, dateclose,close,profitloss
                                      FROM trade_history1
                                      WHERE id = ?"); 


        $stmt->bind_param("i", $id); // 


        $successfullyCopied = $stmt->execute(); 


        $stmt->close();

        $mysqli->close();

?>

顺便说一句,每当我单击demotable.php上的“复制按钮”时,链接将为: http://localhost/1103242B/demo/copytrade.php?copy=copy 我可以知道我错过了代码的哪一部分,或者我做错了吗? 谢谢。

您必须将所有表格设计都放在form标记中。 然后,对于每一行,您必须添加一个带有url的复制链接,例如http://localhost/1103242B/demo/copytrade.php?id=id id是数据库中的记录ID。 您正在生成上面的表格,然后以下面的形式生成对copytrade.php页面的任何ID参考。

这样,您也可以这样做,但是可以在每一行中放置一些复选框,然后在用户单击复选框时,在表单内的隐藏字段中设置ID,然后可以将该ID发布到copytrade.php

两种方式都可以。

尝试如下编辑您的页面。

<html>
<form method = "GET" action = "copytrade.php">

<?php 
require('connect.php');
$query = "SELECT * FROM trade_history1 "; //You don't need a ; like you do in SQL
$result = mysql_query($query);

echo "<table border = '1px'>"; // start a table tag in the HTML
echo "<tr><td>" . "ID" . "</td><td>" . "Date" . "</td><td>" . "Type" . "</td><td>" . "Size" . "</td><td>" . "Currency Pair" . "</td><td>" . "Entry" . "</td><td>" . "Stoploss" . "</td><td>". "Take Profit" . "</td><td>" . "Date Close" . "</td><td>" ."Close" . "</td><td>" ."Profit/Loss"."</td><td>" ."Copy"."</td><td>Copy</td></tr>" ;  //$row['index'] the index here is a field name

while($row = mysql_fetch_array($result)){   //Creates a loop to loop through results
echo "<tr><td>" . $row['id'] . "</td><td>" . $row['date'] . "</td><td>" . $row['type'] . "</td><td>" . $row['size'] ."</td><td>" . $row['currency_pair'] ."</td><td>" . $row['entry'] ."</td><td>" . $row['stoploss'] ."</td><td>" . $row['takeprofit'] ."</td><td>" . $row['dateclose'] ."</td><td>" . $row['close'] ."</td><td>" . $row['profitloss'] . "</td><td>a href='copytrade.php?id=" .$row['id'].'">copy</a></td></tr>";  //$row['index'] the index here is a field name
}

echo "</table>"; //Close the table in HTML

mysql_close(); //Make sure to close out the database connection
?>

<input type = "submit" name = "copy" value = "copy"/></form>
</html>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM