How to delete row using php?

ekalostz

I'm using PHP to display what is in my MySQL database in a table. I think it is working but the output is still "ERROR". I need to delete all records in a row.

<?php
require_once ('config.inc.php');
$id=$_POST['id'];
$sql = "DELETE `subject_information` WHERE `id`='$id'";
$result = mysql_query($sql);

if ($result)
{
    echo "Deleted Successfully";
}
else
{
    echo "ERROR!";
    mysql_close();
}
?>
jrarama

You forgot your FROM keyword. The proper syntax is:

DELETE FROM table_name
WHERE some_column=some_value;

So your code should be like this:

$sql = "DELETE FROM `subject_information` WHERE `id`='$id'";

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to properly delete a row using PHP & PDO

From Dev

how to delete single row using php

From Dev

How to delete a row in php?

From Dev

delete a specific row of a table using php

From Dev

delete a specific row of a table using php

From Dev

Delete row in excel while exporting using php

From Dev

Delete and update row using edit and delete image in php

From Dev

How to delete a row from mysql in php

From Dev

How to delete a row in dojo EnhancedGrid using row index not by using selection

From Dev

how to delete the specified row from html table and also in mysql table using php

From Dev

How to delete single row using a trigger

From Dev

How to delete a row in a table using jQuery?

From Dev

How to delete single row using a trigger

From Dev

how to delete a row in uitableview using uibutton action?

From Dev

How to Delete checked row in MVC using JQuery

From Dev

MySQL Delete row with PHP

From Dev

php - using glob to delete image files along with corresponding db row

From Dev

Delete row from logged in user details using pdo php

From Dev

Auto delete row after 1 day wont work using php

From Dev

How to delete a model using php artisan?

From Dev

How to delete multiple entries using Checkboxes? (PHP)

From Dev

how to delete file that is not on the server using PHP

From Dev

How to delete json files in a folder using php

From Dev

How do I delete a particular row of a table using jQuery?

From Dev

How to delete a row from table using SPSS Modeler

From Dev

How to delete a row without using OnRowDeleted/OnRowDeleting in gridview

From Dev

How to delete /remove blank row in an excel using VB script

From Dev

how multiple row delete using checkbox in yii2

From Dev

How To Delete Duplicate Row In MySQL using sql query?

Related Related

  1. 1

    How to properly delete a row using PHP & PDO

  2. 2

    how to delete single row using php

  3. 3

    How to delete a row in php?

  4. 4

    delete a specific row of a table using php

  5. 5

    delete a specific row of a table using php

  6. 6

    Delete row in excel while exporting using php

  7. 7

    Delete and update row using edit and delete image in php

  8. 8

    How to delete a row from mysql in php

  9. 9

    How to delete a row in dojo EnhancedGrid using row index not by using selection

  10. 10

    how to delete the specified row from html table and also in mysql table using php

  11. 11

    How to delete single row using a trigger

  12. 12

    How to delete a row in a table using jQuery?

  13. 13

    How to delete single row using a trigger

  14. 14

    how to delete a row in uitableview using uibutton action?

  15. 15

    How to Delete checked row in MVC using JQuery

  16. 16

    MySQL Delete row with PHP

  17. 17

    php - using glob to delete image files along with corresponding db row

  18. 18

    Delete row from logged in user details using pdo php

  19. 19

    Auto delete row after 1 day wont work using php

  20. 20

    How to delete a model using php artisan?

  21. 21

    How to delete multiple entries using Checkboxes? (PHP)

  22. 22

    how to delete file that is not on the server using PHP

  23. 23

    How to delete json files in a folder using php

  24. 24

    How do I delete a particular row of a table using jQuery?

  25. 25

    How to delete a row from table using SPSS Modeler

  26. 26

    How to delete a row without using OnRowDeleted/OnRowDeleting in gridview

  27. 27

    How to delete /remove blank row in an excel using VB script

  28. 28

    how multiple row delete using checkbox in yii2

  29. 29

    How To Delete Duplicate Row In MySQL using sql query?

HotTag

Archive