vote up 0 vote down star

Is this an id problem or is there something I am missing? I am trying to get it to delete a comment...On this 'delete.php' page, $prof is the user sending the delete request, on the page that I'm trying to delete from, $auth is the sender of the comment.

$prof = new User($_GET['id']);

$query = "UPDATE ProfileComments SET status = 'dead' WHERE id = '".$prof->id."' LIMIT 1"; $request = mysql_query($query,$connection); ?>

should I replace a different variable in the query instead of '$prof->id' ?

flag

74% accept rate
I'm really hope you escape EVERY variables that comes from the user! – erenon Nov 3 at 17:36
what do you mean? – Ralph The Mouf Nov 3 at 17:46
by escaping erenon? – Ralph The Mouf Nov 3 at 17:47

3 Answers

vote up 5 vote down check

Hi Ralph,

The way I see it, I think it's overkill to make a new object when you're just using the id to update your database :)

I would do it like this:

$id = $_GET['id'];
mysql_query("UPDATE ProfileComments SET status = 'dead' WHERE id = '$id' LIMIT 1") or die(mysql_error());

See if that should do the trick!

link|flag
1  
Escaping. Escaping. Escaping. – erenon Nov 3 at 17:37
sorry ;) I'm new on stackoverflow – bomortensen Nov 3 at 17:45
1  
That has nothing to do with being new or not. Pasting sample code that's vulnerable to SQL injection attacks doesn't help at all in my eyes. – Franz Nov 3 at 17:49
@Franz, was my original code more on the right track? I really think it's an id problem, not getting any errors, echo the query and it looks right, just not getting rid of comment or marking it dead in db – Ralph The Mouf Nov 3 at 17:51
Thought by "escaping" he meant "format your code before posting!" But you're right about escaping (thanks SleighBoy). There's no need to be rude though - wasn't really doing it by purpose. – bomortensen Nov 3 at 19:11
vote up 0 vote down

This will escape data and cast the id as an integer, which it should be in this case.

mysql_query("UPDATE ProfileComments SET status = 'dead' WHERE id = '". mysql_real_escape_string((int)$prof->id) . "' LIMIT 1");
link|flag
vote up 2 vote down

Just type in your application:

echo $query = "UPDATE ProfileComments SET status = 'dead' WHERE id = '".$prof->id."' LIMIT 1";

That will ouput the query as a string. If you can see the error immediatly, great. If not try to paste it into phpMyAdmin. This should really help you debug your MySQL!

Hope it helps!

link|flag
+1 for this simple and effective teqnique. That is what I use whenever I get stuck with query. – Majid Nov 3 at 19:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.