ID: 31938 Updated by: [EMAIL PROTECTED] Reported By: stas at okean dot de -Status: Feedback +Status: No Feedback Bug Type: MySQLi related Operating System: Windows XP Professional PHP Version: 5.0.3 New Comment:
No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2005-02-28 20:43:23] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php5-latest.tar.gz For Windows: http://snaps.php.net/win32/php5-win32-latest.zip ------------------------------------------------------------------------ [2005-02-11 19:26:35] stas at okean dot de Description: ------------ When using mysqli_perpare/execute/bind/fetch combination to retrieve a MD5 hash from the database php replaces the last character of the hash throug a hex(00) character. A mysqli_query/fetch_row works correctly. Reproduce code: --------------- $mysqli->prepare("SELECT MD5('a')"); $ps->execute(); $ps->bind_result($hash); $ps->fetch(); $ps->close(); echo $hash; Expected result: ---------------- 0cc175b9c0f1b6a831c399e269772661 Actual result: -------------- 0cc175b9c0f1b6a831c399e26977266 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=31938&edit=1