cs1h Posted October 23, 2007 Share Posted October 23, 2007 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 Quote Link to comment https://forums.phpfreaks.com/topic/74477-solved-help-needed-deleting/ Share on other sites More sharing options...
GingerRobot Posted October 23, 2007 Share Posted October 23, 2007 '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."; ?> Quote Link to comment https://forums.phpfreaks.com/topic/74477-solved-help-needed-deleting/#findComment-376345 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.