|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-07-27 08:41 UTC] tony2001@php.net
[2006-07-27 09:23 UTC] anton at ht-systems dot ru
[2006-07-27 10:27 UTC] tony2001@php.net
[2006-07-27 10:35 UTC] anton at ht-systems dot ru
[2006-07-27 10:42 UTC] tony2001@php.net
[2006-07-27 11:02 UTC] anton at ht-systems dot ru
[2006-07-27 22:24 UTC] judas dot iscariote at gmail dot com
[2006-08-29 21:28 UTC] tony2001@php.net
[2006-09-18 14:49 UTC] anton at ht-systems dot ru
[2006-09-25 15:02 UTC] anton at ht-systems dot ru
[2006-09-25 20:54 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 21:00:02 2025 UTC |
Description: ------------ web server placed on 32bit linux server with php 5.1.4 and mysql 4.1.18 client. If i using database on 32bit linux server all work correctly, but if using 64bit lunix server after execute statement in database placed incorrect values. in database i see: instead of 19 I see 196864 instead of "RRRRRRRRR" I see "RRRRRRRRRюЂdef??юЂюb7_optЂ?a ?*??a ?*ђ?a ?*??a " Reproduce code: --------------- $mys = new mysqli($mysql_['host'], $mysql_['username'], $mysql_['password'], $mysql_['database']); $qu_insert = "INSERT INTO assort (ind, articul) VALUES (?, ?)"; $stmt = $mys->prepare($qu_insert); $ind = 19; $articul = "RRRRRRRRR"; $stmt->bind_param("is", $ind, $articul); $stmt->execute(); $stmt->close();