|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-04-28 06:13 UTC] 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
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 17:00:01 2025 UTC |
Problem is solve. I'm clean my .htaccess file, source which is: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-s RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.+)$ /index.php?%{QUERY_STRING} [L]