Jump to content

database problem-mysql_fetch_object()


firelior

Recommended Posts

Hi,
I have this:
[code]SELECT * FROM cars WHERE `area` LIKE '%ירושלים%'[/code]
which is in hebrew.
now. when I enter this through the phpmyadmin I don't get any error but when I do this:
[code]
$sql="SELECT * FROM cars WHERE `area` LIKE '%ירושלים%'";
$result = mysql_query($sql);
while ($row = mysql_fetch_object($result))
{
      echo $row->id;
}
[/code]
I get this error:
[code]Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource[/code]
Please help.
THANKS
Link to comment
https://forums.phpfreaks.com/topic/23185-database-problem-mysql_fetch_object/
Share on other sites

ok,
[b]huggy[/b]: what it does is this: [code]Couldn't execute SELECT * FROM cars WHERE `area` LIKE '%ירושלים%': Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation 'like'[/code]

and ray..it doesn't work. its still the same

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.