Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am executing this sql query to update the database

$sql_select = "UPDATE `database1`.`media` SET `media` =(http://torcache.net/torrent/'" . $upload_result . "'.torrent) WHERE 'image_type'= '4' AND 'media' LIKE '"%$fname%"' ";

and i am getting the Warning: Division by zero??

I think it has something to do with this condition LIKE '"%$fname%"' "

which uses the sql LIKE %% to match any string because i have never used this condition before in my code

where would the error be coming from?

share|improve this question
2  
Not from this line, that's for sure – Dvir Azulay Jun 15 '12 at 21:32
1  
Probably should learn to quote your values in queries. – lanzz Jun 15 '12 at 21:32
2  
You are missing some quotes, you can see it here in the Syntax highlighting – Pekka 웃 Jun 15 '12 at 21:33
2  
Honest mistake. Sometimes you need another pair of eyes. +1 for asking anyway !!! – RolandoMySQLDBA Jun 15 '12 at 21:35

1 Answer

up vote 6 down vote accepted

The percent sign is outside the quote, making it MODULUS, or remainder from division.

$sql_select = "UPDATE `database1`.`media` SET `media` =(http://torcache.net/torrent/'" . $upload_result . "'.torrent) WHERE 'image_type'= '4' AND 'media' LIKE '%".$fname."%' ";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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