0

when I try to run this:

$pdo = new PDO('mysql:host=localhost;dbname=lior;charset=utf-8' ,'root', '');
$pdo->exec("INSERT INTO  `users` (
`username` ,
`email`
)
VALUES (
'lior',  'lior'
);");

it inserts the row "lior,lior" 4 times.

when I try to run it on my phpmyadmin it inserts the row once.

thank you.

4

1 回答 1

1

此代码被调用四次。

不过这很不寻常——我更熟悉 2 次。不过,您需要验证您的浏览器和服务器。

试试 Firefox 和 LiveHTTPHeaders 插件,看看浏览器做了多少 HTTP 请求

于 2013-05-07T18:41:20.310 回答