RE: [PHP] database hell

2012-07-12 Thread Adam Nicholls
-Original Message- From: Nick Edwards [mailto:nick.z.edwa...@gmail.com] Sent: 12 July 2012 12:30 To: php-general@lists.php.net Subject: [PHP] database hell Hi We have a program that manages users, throughout all database calls created as: $connect =

RE: [PHP] Entry point of an MVC framework

2012-07-13 Thread Adam Nicholls
-Original Message- From: Simon Dániel [mailto:simondan...@gmail.com] Sent: 12 July 2012 21:21 To: php-general@lists.php.net Subject: [PHP] Entry point of an MVC framework Hi, I have started to develop a simple MVC framework. I have a base controller class which is abstract

RE: [PHP] What do you call the end-user?

2012-07-20 Thread Adam Nicholls
-Original Message- From: Tedd Sperling [mailto:t...@sperling.com] Sent: 19 July 2012 18:27 To: php-general@lists.php.net General Subject: [PHP] What do you call the end-user? What do you call the people who ultimately use your code? I call them the end-user, but others have

Re: [PHP] Compiler for the PHP code

2013-03-19 Thread Adam Nicholls
Checkout HipHop by the Facebook guys, it turns PHP into C code and compiles down to binary. ...although I don't think it's for the faint hearted. Have you tried other optimisation techniques first - eg Caching, and Profiling?? If this is a production environment you might wanna think about

[PHP] COM - Assigning to method.

2013-07-12 Thread Adam Nicholls
of parameters $Record-Fields('BANK_fld_ACCOUNT_NAME', 'Test Account'); I've also tried something crazy like this (below) but that overwrites the $Record object. $_R = $Record-Fields('BANK_fld_ACCOUNT_NAME'); $_R = 'Test Account'; Any ideas? Is it possible? Many Thanks Adam Nicholls -- PHP General

Re: [PHP] COM - Assigning to method.

2013-07-14 Thread Adam Nicholls
...@gmail.com wrote: On Jul 12, 2013 4:53 AM, Adam Nicholls inkysp...@gmail.com wrote: Hi Guys/Gals, I'm doing some integration work with a COM API and according to their documentation to save data in the API, you have to assign to the method. This is their example in Visual Basic

Re: [PHP] COM - Assigning to method.

2013-07-15 Thread Adam Nicholls
, Adam Nicholls inkysp...@gmail.com wrote: Richard - I've tried that I get an error about it not being defined as property of the object. Andrew - do you mean try using the method Richard has shown? Cheers Adam. On 13 July 2013 17:11, Richard Quadling rquadl...@gmail.com wrote: On 13