Re: [PHP] Convert MySQL table into Access or Excell format

2002-07-12 Thread Jason White
You can also use ODBC (Ships with Acess) to make a DSN connection to MySQL. Access can retrieve data from any ODBC DSN. Jason White - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 12, 2002 9:48 PM Subject: R

Re: [PHP] is_null question

2002-07-12 Thread Jason White
f after Email"; print $temp; Jason White ----- Original Message - From: "Jason White" <[EMAIL PROTECTED]> To: "Matthew K. Gold" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, July 12, 2002 9:28 PM Subject: Re: [PHP] is_null question > You

Re: [PHP] is_null question

2002-07-12 Thread Jason White
You can use: if($row[1]){print "Email:$row[1]";}else{print " ";} Jason White - Original Message - From: "Matthew K. Gold" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 12, 2002 9:23 PM Subject: [PHP] is_null question > Hi

[PHP] Inheritance

2002-07-12 Thread Jason White
I have a class Foo{} which has a method Print(). I have another class FooBar{} which extends Foo{} and has its own method Print(). How do I invoke Foo{}'s Print() method from within FooBar{} once its been overridden? Jason White