Ik probeer php/pdo/smarty/mysql te leren aan de hand van een boek De voorbeeld code geeft verschllende resultaten op Windows en Linux:

LINUX:
Array ( [0] => Array ( [product_id] => 1632111920 [name] => te Couture This stamp...15.9914.95haute-couture-thumbnail.gif������ ?, ?)��������������������������������� [description] => [price] => [discounted_price] => [thumbnail] => ) [1] => Array ( [product_id] => [name] => Tankanyika Giraffe The photog...15.0012.99 tan [description] => [price] => [discounted_price] => anyika-giraffe-thumbnail.gif� ?, ?)��������������������������������������������������������������������� [thumbnail] => ) [2] => Array ( [product_id] => 1766656308 [name] => [description] => [price] => [discounted_price] => tletoe This well-...19.0017.99mistletoe-thumbnail.gif�ffe-thumbnail.gif� ?, ?)������������������������������� [thumbnail] => ) [3] => Array ( [product_id] => [name] => Colombia Flower Celebratin...14.5012.95colombia-flowe [description] => [price] => [discounted_price] => -thumbnail.gif�l.gif� ?, ?)������������������������������������������������������������������������������������ [thumbnail] => ) )

WINDOWS:
Array ( [0] => Array ( [product_id] => 10 [name] => Haute Couture [description] => This stamp publicized the dress making industry. Use it to celebrate the T-shirt industry! [price] => 15.99 [discounted_price] => 14.95 [thumbnail] => haute-couture-thumbnail.gif ) [1] => Array ( [product_id] => 51 [name] => Tankanyika Giraffe [description] => The photographer had to stand on a step ladder for this handsome portrait, but his efforts paid off with an angle we seldom see of this lofty creature... [price] => 15.00 [discounted_price] => 12.99 [thumbnail] => tankanyika-giraffe-thumbnail.gif ) [2] => Array ( [product_id] => 84 [name] => Mistletoe [description] => This well-known parasite and killer of trees was revered by the Druids, who would go out and gather it with great ceremony. Youths would go about with... [price] => 19.00 [discounted_price] => 17.99 [thumbnail] => mistletoe-thumbnail.gif ) [3] => Array ( [product_id] => 69 [name] => Colombia Flower [description] => Celebrating the 75th anniversary of the Universal Postal Union, a date to mark on your calendar and on which to wear this T-shirt! [price] => 14.50 [discounted_price] => 12.95 [thumbnail] => colombia-flower-thumbnail.gif ) )

Heeft iemand een idee waar het probleem zit?
Heb je de database-bestanden van Windows naar Linux gekopieerd, of gaat het in ieder geval wel goed in je database-tooltje op Linux? Dan kan je vast uitsluiten dat het niet aan mysql ligt :)

Ander mogelijk probleem is misschien de charset, al denk ik niet dat dat zo'n groot effect zou moeten hebben.

PS: is het je eigen Linux-doos, of is het je hostingprovider z'n server?
Nadat ik vastliep op een php/mysql bug op Windows heb ik de code en de db op Linux opnieuw opgebouwd. Zowel de server als ontwikkellaptop draaien CentOS 5.2. Op beide krijg ik dezelfde output.
Als mysql tool gebruik ik phpMyAdmin. De query is een stored procedure. Helaas kan pma daarmee niet overweg. Is er misschien een andere gratis tooltje die dat wel kan?
Heeft echt niemand een idee?
Fix van Hans Moviat: zet PDO attribute ATTR_EMULATE_PREPARES op TRUE.

Reageren