Closed r3verser closed 10 years ago
Hi, this code makes 6 items in database, every char is duplicated, what i do wrong?
$client = new Everyman\Neo4j\Client('localhost', 7474); foreach (array('a', 'b', 'c') as $c) { $char = $client->makeNode(); $char->setProperty('value', $c) ->save(); }
Tried to execute this script from console (previously i ran it from my browser), and no duplicates were created! So, i think the problem hides in my Google Chrome. Sorry for false issue!:)
Hi, this code makes 6 items in database, every char is duplicated, what i do wrong?