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.