Posted by Mr. Newt on 03/11/07 17:53
<?php
//db & table names used to connect
include ("connect.php");
//display a list of names preceeded by id #
include ("display_names.php");
?>
<p>Which record would you like to delete?</p>
<P>Enter Record #<br>
<input type=text name="id" size=20>
<input type=submit name="submit" value="Delete Record">
<?php
mysql_query("DELETE FROM testtable WHERE id=$id");
?>
The above deletes the last record in the table. Obviously it's not getting
the # that is being entered. Any help?
Thanks.
Robert
[Back to original message]
|