Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.