Re: [PHP] Can I use Microsoft Access as a database?

2001-09-18 Thread A. op de Weegh
ified, SQL state IM002 in SQLConnect in C:\Inetpub\wwwroot\odbc.php on line 3. Any ideas? Thanks, Alex "Niklas lampén" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I think that ODBC is your solution. > > > Niklas > &g

[PHP] Can I use Microsoft Access as a database?

2001-09-16 Thread A. op de Weegh
Hi all, for testing purposes in a school environment, I would like to use a Microsoft Access database with PHP. I know how to connect to and use a MySQL database, but I can't find any functions for accessing Microsoft Access databases. Can anyone help me out here? Thankx, Alex -- PS: Replace th

[PHP] How to call a member from the base class?

2001-09-03 Thread A. op de Weegh
Hi all, I am wondering, if I do the following: class A { function something() { } } class B extends A { function something() { } } var $varB = new B; $varB->something(); How do I make sure in the something() member of class B, that the parent class member something() is also ca