vote up 0 vote down star

My delete.php is sending the selected item to the db as dead as it should, but the blog is still staying on the page that its deleted from. What am I doing wrong? this is my query: on the delete.php:

$MyBlog =  $_GET['id'];

$query = "UPDATE `Blogs` SET `status` = 'dead' WHERE `id` = '".$MyBlog."'";

Like I said, this is marking id dead on the db as it should, but not deleting the actual blog off of the page, is this because I don't have: AND `status` != 'dead' on the page it's getting sent from?

flag

70% accept rate
4  
"Is [this] because I don't have: AND status != 'dead' on the page it's getting sent from?" I don't know, why don't you try that? – bcat Nov 4 at 23:39
3  
delete.php?id=id => All blogs dead – Chetan Sastry Nov 4 at 23:42
5  
@Chetan Sastry: delete.php?id='+or+1+or' should work better to remove all – Ivan Nevostruev Nov 4 at 23:46
thanks, but when you say 'remove all' you are referring to just the select blog right? – Ralph The Mouf Nov 4 at 23:51
2  
@Ralph: We meant to say that there is a vulnerability in your code to SQL injection attacks. php.net/manual/en/… – Chetan Sastry Nov 4 at 23:54
show 1 more comment

2 Answers

vote up 3 vote down

Fine. I'll just post the correct answer then (note the typo in Kieran's):

SELECT * FROM blog WHERE status!='dead'

That's what your SELECT query should look like.

link|flag
vote up 0 vote down

how are you selecting the entries on the blog page.

SELECT * FROM blog WHERE status NOT dead

Maybe that would work?

link|flag
1  
dead is a string. – Franz Nov 4 at 23:52
1  
So therefore this should be SELECT * FROM blog WHERE status!='dead' – Franz Nov 4 at 23:53
@Franz: so you are saying to put that on the page that is sending to the delete.php? – Ralph The Mouf Nov 5 at 5:24
@ralph. Nar this statement will get the blogs that have a status that is not marked as dead. From what you have written it sounds as though your statement to mark the blog records is working. The problem is in selecting the records on the display blog page. The where statement will stop the 'dead' records being selected. – Kieran Nov 5 at 22:52

Your Answer

Get an OpenID
or

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