Re: [PHP-DB] $db=new mysqli fails while $db=mysqli_connect succeeds in PHP/MySQL 5

2007-08-29 Thread Goltsios Theodore
|Why don't you try this:| |?php| |$mysqli = new mysqli(localhost, my_user, my_password, world);| || |/* check connection */| |if (mysqli_connect_errno()) {| |printf(Connect failed: %s\n, mysqli_connect_error());| |exit();| |}| || |printf(Host information: %s\n, $mysqli-host_info);| || |/*

Re: [PHP-DB] $db=new mysqli fails while $db=mysqli_connect succeeds in PHP/MySQL 5

2007-08-29 Thread Goltsios Theodore
Reposting the code sorry: ?php $mysqli = new mysqli(localhost, my_user, my_password, world); /* check connection */ if (mysqli_connect_errno()) { printf(Connect failed: %s\n, mysqli_connect_error()); exit(); } printf(Host information: %s\n, $mysqli-host_info); /* close connection */

[PHP-DB] PDO Contact ?

2007-08-29 Thread Nicolas Boiteux
Hello, I'm leading the PhpMyObject (PMO) Project: official website: http://pmo.developpez.com It's an object abstraction layer that permits to convert data from PDO to unitary PHP object (not row). Example: | require_once

Re: [PHP-DB] PDO Contact ?

2007-08-29 Thread Chris
I wish to know who i can contact from PDO Team to submit evolutions ? No particular person. I think Wez was in charge when it was being built but it's all integrated into the core php now - so join the -internals list and make a proposal/suggestion. -- Postgresql php tutorials