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 
<http://www.php.net/manual/fr/function.require-once.php>(|"||core||/||PMO_MyController||.||php||"|)|;|
                        
                        |$controler| |=| |new| PMO_MyController()|;|
                        |$||map| |=| |$controler||->queryController|(|"||SELECT|| 
||*|| ||FROM|| ||employe||,||parking|| ||WHERE|| 
||employe||.||id_employe||=||parking||.||id_employe|| ||limit|| ||20|| ||;||"|)|;|
                        
                        |while| (|$||result| |=| |$map||->fetchMap|())|{|
                                echo 
<http://www.php.net/manual/fr/function.echo.php>(|$result||[||'||employe||'||]||->nom|)|;|
                                echo 
<http://www.php.net/manual/fr/function.echo.php>(|$result||[||'||parking||'||]||->numero_place|)|;|
                        |}||



Like the project progressed well and that there are many possibilities, I wish to know who i can contact from PDO Team to submit evolutions ?

Regards,
Nicolas

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to