Jump to content

Delete


danjoe_15

Recommended Posts

This is where I call my delete function:

 

<td><form action="DeleteOrder.php" method="GET">

                <input type="hidden" name="order_id" value="<? echo ($row['order_id']); ?>"/>

<input type="submit"style="width:150px" name="Delete Order" value="Delete Order"/></form></td>

 

 

 

This is DeleteOrder.php:

 

 

<?php

include 'common.php';

 

dbConnect();

 

mysql_query("DELETE FROM orders WHERE order_id=%1", $_GET['order_id']);

 

dbclose

?>

 

 

 

 

What did I do wrong here?  The record which I want to delete is not being deleted.

Link to comment
https://forums.phpfreaks.com/topic/141087-delete/
Share on other sites

This is what it came back with:

 

Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /var/www/vhosts/farmworks.com/subdomains/forms/httpdocs/DeleteOrder.php on line 9

 

 

Show us the full code. And highlight line 9 in some way and use the [ code] and [ /code] tags (without the initial space).

Link to comment
https://forums.phpfreaks.com/topic/141087-delete/#findComment-738415
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.