Jump to content

problem with SQl Delete


jesushax

Recommended Posts

hi here is my delete action

 

Case "deletefile" :
$ID = $_GET["ID"];
$FileID = $_GET["FileID"];
mysql_query("DELETE * FROM tblCompanyFiles WHERE FileID=".$FileID." ") or die(mysql_error());
header("Location: /companies/admin_edit_company.php?ID=".$ID."");
break;

 

my link

 

<a href=\"/companies/admin_edit_company.php?action=deletefile&FileID=".$rsfiles["FileID"]."&ID=".$ID."\">Delete File</a>

 

and error message

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM tblCompanyFiles WHERE FileID=1' at line 1

 

i cant see whats wrong :S

 

frustrated i am! lol

 

cheers

Link to comment
https://forums.phpfreaks.com/topic/92455-problem-with-sql-delete/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.