Hi Pamela! How's argentina..?
There's a great article at http://www.pickwiki.com/cgi-bin/wiki.pl?U2pipe (courtesy Rex Gozar) And there are these http://www.ibm.com/developerworks/db2/products/u2/ http://u2blog.org/2008/01/10/php-in-universe/ Install UNIDK on the webserver and put the following code inside a php page. This will initiate the connection to the Unidata server and allow you to talk via uniobjects. <?php $Hostname = "192.168.0.1"; $Username = "admin"; $Password = "password"; $Accountpath = "c:\ibm\mydemoaccount"; $UdSession = new COM("UniObjects.unioaifctrl"); $UdSession->HostName = $Hostname; $UdSession->AccountPath = $Accountpath; $UdSession->UserName = $Username; $UdSession->Password = $Password; $UdSession->Connect(); ?> And then the page I got these references from http://www.nabble.com/accessing-U2-with-PHP-td14766390.html#a14767029 -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of pam Sent: 23 May 2008 04:58 PM To: [email protected] Subject: [U2] Universe Tutorial - Conect php to universe Hi!! I'm starting with universe and I wanna make a web programming with php. I could install the IBM's module but I couldn4t connect yet. I 'm looking for a tutorial to learn universe because i don't know how to create a database or a table on it! And someone knows if exists an orm for universe ? Thanks a lot Pamela ------- u2-users mailing list [email protected] To unsubscribe please visit http://listserver.u2ug.org/ No virus found in this incoming message. Checked by AVG. Version: 8.0.100 / Virus Database: 269.24.0/1462 - Release Date: 5/23/2008 7:20 AM ------- u2-users mailing list [email protected] To unsubscribe please visit http://listserver.u2ug.org/
