Jump to content

MYSQL Deleting Help!


xyn

Recommended Posts

What are you using? I form using the GET method, or a link?



1) If it's a form, the form should look like this:
<form action="action.php" method="GET">
<input type="text" name="field1">
<input type="text" name="something">
<input type="submit">

And the "action.php" will recieve the vars: $_GET['field1'] and $_GET['something']



2) If it's a link, the like should look like:
<a href="action.php?field1=value&something=somethingelse" ....>
And the "action.php" will recieve the vars: $_GET['field1'] and $_GET['something']



Orio.
Link to comment
https://forums.phpfreaks.com/topic/13445-mysql-deleting-help/#findComment-51973
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.