Re: [PHP] From 24/7/2013 to 2013-07-24

2013-07-26 Thread Přemysl Fiala
Hello, try & - reference foreach($lagret_dato as &$dag) or something like this :-) Premek. On Fri, 26 Jul 2013 11:18:03 +0200, Karl-Arne Gjersøyen wrote: Below is something I try that ofcourse not work because of rsosort. Here is my code: --- $lagret_dato = $_POST['l

Re: [PHP] COM - Assigning to method.

2013-07-15 Thread Přemysl Fiala
Hello, did you tried var_dump or print_r the $oBank object to see his structure ? Also you can try: $BANK_fld_BRANCH_NAME = 22; $oBank->$BANK_fld_BRANCH_NAME = 'something'; Premek. On Mon, 15 Jul 2013 10:21:48 +0200, Adam Nicholls wrote: Hi Andrew Thanks for this. But I'm still g

Re: [PHP] syntax question

2013-07-10 Thread Přemysl Fiala
Hello, is an alternative syntax. http://php.net/manual/en/control-structures.alternative-syntax.php Premek. On Wed, 10 Jul 2013 13:15:22 +0200, Jim Giner wrote: Can someone tell me what this syntax is? I looked around but don't see any mention of it. while(condition) : (statement);

Re: [PHP] A Good OOP Tutorial/Read?

2013-05-17 Thread Přemysl Fiala
Interfaces...I will add my 2 cents to what was already said.You don't need them, but they improve quality of your code. Your application is easily maintained, improved, understandable, accessible,   more cleaner, modules can be added easily...They implements some behavior (example):interface toastA