[PHP] Re: php w/ mysql support compiled in -- can't connect to mysql

2001-07-14 Thread u007
hi, I would suggest u do not put path to mysql with php configure...simply, --with-mysql will do.. hope iit works, thank you regards, James Kurt Lieber wrote: OK, there's been another thread floating around about getting: Fatal error: Call to undefined function: mysql_pconnect() Turns

[PHP] Re: OOP Problems

2001-07-14 Thread u007
hie.. it's simply u did not declare ur class variable... class ctest { var $owner; function ctest($owner) { $this-owner = $owner; } function foo() { echo test!br; } } hope it works :) regards, James Andrew Kirilenko wrote: Hello! I have following