Jump to content

records won't delete


garydt

Recommended Posts

Does your local server have register_globals set to "On"

 

You may find that one of these might fix your problem:

 

mysql_query("DELETE FROM guestbook WHERE id = '" . $_GET['recnum'] . "'");

 

or

 

mysql_query("DELETE FROM guestbook WHERE id = '" . $_POST['recnum'] . "'");

 

;)

 

 

Link to comment
https://forums.phpfreaks.com/topic/60350-records-wont-delete/#findComment-300262
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.