[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

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 Everyone, Here's my problem: I'd like to make

Re: [PHP] is_null question

2002-07-12 Thread Jason White
My appologies, I didn't read clear through, your code block confused me :-) What I usually do in a situation like this, although I'm new to PHP is. $temp=Some stuff before Email; if($row[1]){ $temp .= Email:$row[1]; } $temp .= The rest of the stuff after Email; print $temp; Jason White

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: Re: [PHP] Convert MySQL table