[PHP-DB] access db

2006-05-07 Thread tuna3000
im new to php, i would like to see a simple php script for manipulating an access database (or mysql) for me to learn on. thanks. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] access db

2006-05-07 Thread Stut
tuna3000 wrote: im new to php, i would like to see a simple php script for manipulating an access database (or mysql) for me to learn on. thanks. Have you tried the manual? Lots of useful and interesting stuff in there. Especially for people new to PHP. Try http://php.net/odbc and

Re: [PHP-DB] Access db

2003-11-21 Thread Luke van Blerk
Thanks Michael. I'll check it out ;) - Luke Michael Mauch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Luke Van Blerk wrote: I'll probably just extract the data with an access to mysql script and run it on mysql. This is probably the best approach if you have access to

Re: [PHP-DB] Access db

2003-11-20 Thread Michael Mauch
Luke Van Blerk wrote: I'll probably just extract the data with an access to mysql script and run it on mysql. This is probably the best approach if you have access to Windows machine. If not, http://freshmeat.net/projects/mdbtools/ might help. Regards... Michael -- PHP

[PHP-DB] Access db

2003-11-19 Thread Luke van Blerk
Hi everyone Can PHP access an access database residing on a unix / linux box? I know theres and ODBC extension but is that only for windows? Regards Luke -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Access db

2003-11-19 Thread Robert Twitty
To the best of my knowledge you cannot access an Access database directly from UNIX or Linux. The reason is because the Jet Engine has not been ported to those platforms. Your only options may be something like EasySoft's ODBC-ODBC bridge or ODBTP. -- bob On Wed, 19 Nov 2003, Luke van Blerk

RE: [PHP-DB] Access db

2003-11-19 Thread Luke van Blerk
Thanks Robert I'll probably just extract the data with an access to mysql script and run it on mysql. - Luke Robert Twitty wrote: To the best of my knowledge you cannot access an Access database directly from UNIX or Linux. The reason is because the Jet Engine has not been ported to those

Re: [PHP-DB] access DB via PHP classes

2002-10-08 Thread Wilmar Perez
Well, what about building a basic class without any database conection in the constructor and then have a inherited class with the needed database conection? and then use whichever you need to generate the pages. You can even just have the basic class and execute some code in the constructor

Re: [PHP-DB] access DB via PHP classes

2002-10-08 Thread Ruth Zhai
- Original Message - From: Wilmar Perez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 12:10 AM Subject: Re: [PHP-DB] access DB via PHP classes Well, what about building a basic class without any database conection in the constructor and then have a inherited class

[PHP-DB] access DB via PHP classes

2002-10-07 Thread Ruth Zhai
Hi All, Although I am not so new to PHP (not expert either), this is the first time for me to use PHP class. I am starting a project, and plan to use partially OOP and partially traditional programming. I use PHP/MySQL. I have one class, DB_Do, which does every thing to do with database, and

Re: [PHP-DB] access DB via PHP classes

2002-10-07 Thread Wilmar Perez
Well, I'll tell you what I do. I'm not a OOP expert so if someone feel like I'm doing it wrong I'll welcome any comment about . I've got a main class which I use to generate every page in my website (some are actually generated by inherited classes but that's the main idea). As I need a

Re: [PHP-DB] access DB via PHP classes

2002-10-07 Thread Ruth Zhai
if it is efficient. Thanks again. Ruth - Original Message - From: Wilmar Perez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 11:53 AM Subject: Re: [PHP-DB] access DB via PHP classes Well, I'll tell you what I do. I'm not a OOP expert so if someone feel like