Re: delete a record not working

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



hi, if the column type of id is varchar or char, u need to put '' around id.
ur query should look like
mysql_query("DELETE FROM open_trades WHERE id= '".$id."'");
Note that your can leave any space between " and '
if u do have a space between them, ur query will look like
mysql_query("DELETE FROM open_trades WHERE id= ' valueofID'");
instead of
mysql_query("DELETE FROM open_trades WHERE id= 'valueofID'");
and the first query will not return any result becuase of that space
Justin wrote:
Hello, I have a simple script to retrieve and then delete a selected script, but it does not work.

When I hit the button I get:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'id' at line 11064"

Any help would be appreciated.
Thanks


<form action="<? echo $PHP_SELF ?>" method="post"> <?php

mysql_pconnect("localhost","root","password");
mysql_select_db("options");
$result = mysql_query("select * from open_trades");

while ($row = mysql_fetch_array($result))
{
    print "<tr><td>";
    print "<INPUT TYPE='RADIO' NAME='id' VALUE='id'>";
    print "</td><td>";
    print $row["id"];
    print "</td><td>";
    print $row["open_date"];
    print "</td><td>";
    print $row["short_long_trade"];
    print "</td><td>";
    print $row["expiry"];
    print "</td></tr>\n";

}
print "</table>\n";
?>
<input type="submit" name="submit" value="close"></form>
<?php
if($submit)

                 {
                  mysql_query("DELETE FROM open_trades WHERE id=$id");
                  echo "Thank you! Information updated.";
                  echo mysql_error();
                  echo mysql_errno();
                  }
?>

-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux