Jump to content

[SOLVED] Help needed deleting


cs1h

Recommended Posts

Hi,

 

I have a script that is designed to delete a row from my database, it identifies the row by its unique id. But its not working, can anyone help?

 

The script is,

<?php

include "dog.php";

$id=$_POST['hiddenField'];

mysql_connect($server, $db_user, $db_pass) or die (mysql_error()); 
mysql_select_db("$database") or die(mysql_error()) ;

$sql = ("DELETE FROM items WHERE id = '$id'");
$result = mysql_query($sql);
echo "Deletion success<br /> <a href='arteditor.php'>Click here</a> to return to the admin home.";

?>

 

Any help is appriciated,

 

thanks

Colin

Link to comment
Share on other sites

'its not working' is quite vague. What actually happens? Does everything appear to work but the row not get deleted?

 

First off, you dont need the parenthesis around your string defined in $sql. Second, perhaps $id is not defined. Are you sure your field was called hiddenField? (perhaps it was hiddenfield?)

 

Try this to debug:

 

<?php

include "dog.php";

$id=$_POST['hiddenField'];

mysql_connect($server, $db_user, $db_pass) or die (mysql_error()); 
mysql_select_db("$database") or die(mysql_error()) ;

$sql = "DELETE FROM items WHERE id = '$id'";
$result = mysql_query($sql) or die(mysql_error());
echo 'The query was: '.$sql.'<br />';
echo "Deletion success<br /> <a href='arteditor.php'>Click here</a> to return to the admin home.";

?>

Link to comment
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.