ID: 41218 User updated by: dailu at mail dot ru Reported By: dailu at mail dot ru Status: Bogus Bug Type: MySQL related Operating System: Windows XP Pro PHP Version: 5.2.1 New Comment:
Женя, ну, ты почему пишешь по-английски? :) Я поглядел в в HeidiSQL. Там на одну запись больше. И причем все работает только с localhost, с других хостов нет багов. Previous Comments: ------------------------------------------------------------------------ [2007-04-28 08:16:24] [EMAIL PROTECTED] Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. ------------------------------------------------------------------------ [2007-04-28 07:48:07] eugene dot pikalov at gmail dot com Write result of your script. >>table contain two equal records How you have learned about it? ------------------------------------------------------------------------ [2007-04-28 06:13:06] dailu at mail dot ru Description: ------------ Table is empty. I insert one record in table. In spite that table contain two equal records, although at output record is single. I used mysql 5.0.20. P.S.: I'm from Russia, sorry for my english.. Reproduce code: --------------- mysql_connect('localhost', 'root', NULL); mysql_select_db('localhost'); echo ' Before:<br/>'; $result = mysql_query('SELECT * FROM `documents`'); while($array = mysql_fetch_assoc($result)) printf('%d.%d %s<br/>', $array['id'], $array['id_branch'], $array['name']); // Table is empty mysql_query("INSERT INTO `documents` (`id`,`id_branch`,`name`) VALUES (NULL, 1, 'Record2')"); echo ' After:<br/>'; $result = mysql_query('SELECT * FROM `documents`'); while($array = mysql_fetch_assoc($result)) printf('%d.%d %s<br/>', $array['id'], $array['id_branch'], $array['name']); Expected result: ---------------- Before: After: 1.1 Record2 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=41218&edit=1
