copy and delete data from one table

Wilfred Clement

I used this code

<?php
$con=mysqli_connect("localhost","willy","12345","mop");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="INSERT INTO nominated select * from student where regno = '$_POST[regno]'";
if (!mysqli_query($con,$sql))
  {
  die('Error: ' . mysqli_error($con));
  }
header("location:form5_1.php");

mysqli_close($con);
?>

and this copies the content from one table to another, how do I move ( delete from current table and move to another table ) ??

Hanky Panky

1) Copy the record

$sql1="INSERT INTO nominated select * from student where regno = ".intval($_POST["regno"]);

2) Delete the original one

$sql2="DELETE from student where regno = ".intval($_POST["regno"]);

Execute both queries. Remember to sanitize your POST variable before doing so.

Edit:

You asked how to execute both of them, here is how you can do that using your own code

$sql1="INSERT INTO nominated select * from student where regno = ".intval($_POST["regno"]);
if (!mysqli_query($con,$sql1))
{
 // your error checking here
}
else
{
    $sql2="DELETE from student where regno = ".intval($_POST["regno"]);
    if (!mysqli_query($con,$sql2)
    {
      // your error checking here
    }
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How do I copy data from one table to another in postgres using copy command

From Dev

Copy Data from one hbase table to another

From Dev

Copy a table with data from one MySQL server to another

From Dev

copy data from one table to another table in another database

From Dev

Using LINQ to copy data from one table to another one on another server?

From Dev

PostgreSQL - copy data from one table, database, server to another table, another database, server

From Dev

How to copy data from one table into another in Microsoft SQL Server

From Dev

How copy data from one table into another? PHP

From Dev

Copy Data from multiple table to one table without duplicate

From Dev

How to copy data from one database/table to another Remote one by it's Ip

From Dev

How do i copy data from one table to another table?

From Dev

Copy table data from one database to another

From Dev

MYSQL, copy data from one table to another table with increment in varchar

From Dev

More Efficient Way to Copy Large Data from One Table to Another

From Dev

Copy Data from one hbase table to another

From Dev

copy table data from one db to another with where condition

From Dev

Execute query for copy data from one table to another

From Dev

MySQL copy data from one table to another in different fields

From Dev

How copy data from one table into another? PHP

From Dev

Copy Data from multiple table to one table without duplicate

From Dev

How do i copy data from one table to another table?

From Dev

Copy table data from one database to another

From Dev

Copy Data from one table to another table

From Dev

Cron php update/insert one sql table from another and delete data from old table

From Dev

How to separate column data to copy from one table to other table?

From Dev

Copy data from one table to other in Cassandra using Java

From Dev

SQL Server Copy Random data from one table to another

From Dev

Copy data from a Pivot table in one worksheet ot another

From Dev

Copy Data from a table in one Database to a wordpress database

Related Related

  1. 1

    How do I copy data from one table to another in postgres using copy command

  2. 2

    Copy Data from one hbase table to another

  3. 3

    Copy a table with data from one MySQL server to another

  4. 4

    copy data from one table to another table in another database

  5. 5

    Using LINQ to copy data from one table to another one on another server?

  6. 6

    PostgreSQL - copy data from one table, database, server to another table, another database, server

  7. 7

    How to copy data from one table into another in Microsoft SQL Server

  8. 8

    How copy data from one table into another? PHP

  9. 9

    Copy Data from multiple table to one table without duplicate

  10. 10

    How to copy data from one database/table to another Remote one by it's Ip

  11. 11

    How do i copy data from one table to another table?

  12. 12

    Copy table data from one database to another

  13. 13

    MYSQL, copy data from one table to another table with increment in varchar

  14. 14

    More Efficient Way to Copy Large Data from One Table to Another

  15. 15

    Copy Data from one hbase table to another

  16. 16

    copy table data from one db to another with where condition

  17. 17

    Execute query for copy data from one table to another

  18. 18

    MySQL copy data from one table to another in different fields

  19. 19

    How copy data from one table into another? PHP

  20. 20

    Copy Data from multiple table to one table without duplicate

  21. 21

    How do i copy data from one table to another table?

  22. 22

    Copy table data from one database to another

  23. 23

    Copy Data from one table to another table

  24. 24

    Cron php update/insert one sql table from another and delete data from old table

  25. 25

    How to separate column data to copy from one table to other table?

  26. 26

    Copy data from one table to other in Cassandra using Java

  27. 27

    SQL Server Copy Random data from one table to another

  28. 28

    Copy data from a Pivot table in one worksheet ot another

  29. 29

    Copy Data from a table in one Database to a wordpress database

HotTag

Archive