Re: [PHP] problem with my class

2009-04-16 Thread Jan G.B.
2009/4/16 Luke l...@blog-thing.com: Hi guys, I've been learning about object oriented programming and I wrote this test class but it doesn't seem to be working, it throws no errors but doesn't insert anything to the database either. I have made sure that the data being sent when the class is

Re: [PHP] problem with my class

2009-04-16 Thread Luke
2009/4/16 Jan G.B. ro0ot.w...@googlemail.com 2009/4/16 Luke l...@blog-thing.com: Hi guys, I've been learning about object oriented programming and I wrote this test class but it doesn't seem to be working, it throws no errors but doesn't insert anything to the database either. I have

Re: [PHP] problem with my class

2009-04-16 Thread Thijs Lensselink
Luke wrote: 2009/4/16 Jan G.B. ro0ot.w...@googlemail.com 2009/4/16 Luke l...@blog-thing.com: Hi guys, I've been learning about object oriented programming and I wrote this test class but it doesn't seem to be working, it throws no errors but doesn't insert anything to the database

Re: [PHP] problem with my class

2009-04-16 Thread Luke Slater
On Thu, Apr 16, 2009 at 2:41 PM, Thijs Lensselink p...@addmissions.nlwrote: Luke wrote: 2009/4/16 Jan G.B. ro0ot.w...@googlemail.com 2009/4/16 Luke l...@blog-thing.com: Hi guys, I've been learning about object oriented programming and I wrote this test class but it doesn't seem

Re: [PHP] problem with my class

2009-04-16 Thread Thijs Lensselink
Luke Slater wrote: On Thu, Apr 16, 2009 at 2:41 PM, Thijs Lensselink p...@addmissions.nl mailto:p...@addmissions.nl wrote: Luke wrote: 2009/4/16 Jan G.B. ro0ot.w...@googlemail.com mailto:ro0ot.w...@googlemail.com 2009/4/16 Luke l...@blog-thing.com

RE: [PHP] problem with my class

2009-04-16 Thread abdulazeez alugo
Date: Thu, 16 Apr 2009 14:43:46 +0100 From: l...@blog-thing.com To: p...@addmissions.nl CC: ro0ot.w...@googlemail.com; php-general@lists.php.net Subject: Re: [PHP] problem with my class On Thu, Apr 16, 2009 at 2:41 PM, Thijs Lensselink p...@addmissions.nlwrote: Luke wrote: 2009

Re: [PHP] problem with my class

2009-04-16 Thread Jan G.B.
2009/4/16 abdulazeez alugo defati...@hotmail.com: Date: Thu, 16 Apr 2009 14:43:46 +0100 From: l...@blog-thing.com To: p...@addmissions.nl CC: ro0ot.w...@googlemail.com; php-general@lists.php.net Subject: Re: [PHP] problem with my class On Thu, Apr 16, 2009 at 2:41 PM, Thijs Lensselink p

Re: [PHP] problem with my class

2009-04-16 Thread Jan G.B.
Excuse my bad spelling. I should have read the message again before hitting send. :-) 2009/4/16 Jan G.B. ro0ot.w...@googlemail.com: I think the problem was with the $title. As above, you defined the private variable $rtitle but you were trying to call the variable later as $title. The