Closed Thread
Results 1 to 4 of 4

Thread: delete

  1. #1
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    delete

    This is probably a really silly question but when I run this sql query:

    Code:
    $sql = "DELETE category_id, category_name FROM categories WHERE category_id='" . sanitize($_POST["cbxCategory"]) . "';";
    It only deletes whatever is in category_name in the row not the entire row. Why? Shouldn't it delete the entire row?

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Sep 2007
    Location
    Karlstad, Sweden
    Posts
    3,082
    Blog Entries
    7
    Rep Power
    42

    Re: delete

    Well, you specify it to delete columns. if you do DELETE FROM.. it will do the row.
    I didn't know you could delete columns like that :-)
    __________________________________________
    I study Information Systems at Karlstad University when I'm not on CodeCall

  4. #3
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: delete

    You know what I feel really stupid. There was no problem with my sql code because the two columns above are the only columns in the table.

    The problem was my form was sending the POST data to the wrong page for processing.

  5. #4
    Join Date
    Sep 2007
    Location
    Karlstad, Sweden
    Posts
    3,082
    Blog Entries
    7
    Rep Power
    42

    Re: delete

    oh.. no wonder why...
    __________________________________________
    I study Information Systems at Karlstad University when I'm not on CodeCall

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 11-06-2010, 05:10 AM
  2. how to delete a thread?
    By mayra in forum The Lounge
    Replies: 12
    Last Post: 07-12-2010, 07:30 PM
  3. Delete me thanks
    By idle in forum General Programming
    Replies: 0
    Last Post: 10-17-2007, 11:10 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts