ID: 30088 Updated by: [EMAIL PROTECTED] Reported By: costinb at mymail dot ro -Status: Feedback +Status: Bogus Bug Type: Reproducible crash Operating System: Windowx XP Prof PHP Version: 5.0.1 New Comment:
Please do not submit the same bug more than once. An existing bug report already describes this very problem. Even if you feel that your issue is somewhat different, the resolution is likely to be the same. Thank you for your interest in PHP. see #29974. and try latest snapshot. Also your script is buggy: Connection object has no num_rows property. Previous Comments: ------------------------------------------------------------------------ [2004-09-15 08:49:23] [EMAIL PROTECTED] Not enough information was provided for us to be able to handle this bug. Please re-read the instructions at http://bugs.php.net/how-to-report.php If you can provide more information, feel free to add it to this bug and change the status back to "Open". Thank you for your interest in PHP. ------------------------------------------------------------------------ [2004-09-14 19:55:36] costinb at mymail dot ro Description: ------------ Read on Reproduce code: --------------- OK Take a db object, $db = new mysqli(...); Run a query on it: $query = "..."; if (!($result = $db->query($query)) or !$db->num_rows) { echo "No rows"; } Well, that if would crash Apache 1.3 running PHP 5.0.1 unless I write it like this: if (!(result = $db->query($query))) { if (!$db->num_rows) { echo "No rows"; } } I reverted to PHP 5.0.0 and all worked fine once again. Expected result: ---------------- up Actual result: -------------- up ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30088&edit=1