RE: [PHP] Remote Key Question

2010-04-23 Thread David Murphy
Personally I would make -Original Message- From: Adam Richardson [mailto:simples...@gmail.com] Sent: Friday, April 23, 2010 11:09 AM To: tedd Cc: PHP eMail List Subject: Re: [PHP] Remote Key Question On Fri, Apr 23, 2010 at 12:03 PM, tedd t...@sperling.com wrote: Hi gang: A few

RE: [PHP] Remote Key Question

2010-04-23 Thread David Murphy
GRR I hate outlook veruses Trillian Personally I would make Author: Id|Name|Bio Article: Id,title,desc,authordata So then I can do things like Select Articles.Title, article.Description,(select GROUP_CONCAT(Name) from authors where authors.ID IN Articles.AuthorData) as Authors from

RE: [PHP] Remote Key Question

2010-04-23 Thread David Murphy
-Original Message- From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] Sent: Friday, April 23, 2010 11:16 AM To: tedd Cc: PHP eMail List Subject: Re: [PHP] Remote Key Question On Fri, 2010-04-23 at 12:03 -0400, tedd wrote: Hi gang: A few times I've found myself confronted with a

[PHP] RE: mysql query returning slowly

2010-04-07 Thread David Murphy
as they are compiled modules not userland functions. -Original Message- -Original Message- From: Nathan Rixham [mailto:nrix...@gmail.com] Sent: Tuesday, April 06, 2010 6:35 PM To: David Murphy Cc: php-general@lists.php.net Subject: Re: mysql query returning slowly David Murphy wrote

[PHP] mysql query returning slowly

2010-04-06 Thread David Murphy
up | 0.04 | 0.00 | 0.00 | 0 | 0 | 0| 0 | 0 | 0 | 0 | 0 | 0 | Thanks David Murphy

RE: [PHP] Drawing Images Without Writing To a File

2010-03-11 Thread David Murphy
Also you should think about writing those files a memcache or something. That way the image can expire but you're not wasting a lot of cpu cycles, aka 500 hits to the site at the same time would be very intensive, but if someone hit the site 10 minutes ago with a 700 ttl, the would load

RE: [PHP] outlook calendar entry on the fly

2010-03-11 Thread David Murphy
http://www.phpclasses.org/browse/package/873.html Should do the trick for you. -Original Message- From: Jack [mailto:jacklistm...@gmail.com] Sent: Thursday, March 11, 2010 12:24 PM To: php-general@lists.php.net Subject: [PHP] outlook calendar entry on the fly Does anyone have any

RE: [PHP] App to put a whole PHP Site in CD/DVD

2010-03-02 Thread David Murphy
ThinAPP by VMware is a better alternative I think, it makes the VM into an EXE, so autorun will load the exe, which you can set a windows or full screen. Of course this isn't free. Also RoadsendPHP http://roadsend.com can package an app in offline mode, with an embedded web server

RE: [PHP] $_POST vs $_REQUEST

2010-02-22 Thread David Murphy
such as $_REQUEST. David Murphy -Original Message- From: richard.he...@gmail.com [mailto:richard.he...@gmail.com] On Behalf Of Richard Sent: Monday, February 22, 2010 3:03 PM To: Joseph Thayne Cc: Slack-Moehrle; php-general Subject: Re: [PHP] $_POST vs $_REQUEST Hi, I am not sure what

RE: [PHP] Thinking of moving to .NET because of standalone... any suggestions?

2010-02-03 Thread David Murphy
along with your php applications to provide easy and comprehensive installation and instant functioning of your php scripts. http://www.nusphere.com/products/phpdock.htm Hope this helps David Murphy -Original Message- From: Ryan S [mailto:gen...@yahoo.com] Sent: Wednesday, February 03

RE: [PHP] What is the best practice for adding persistence to an MVC model?

2009-10-27 Thread David Murphy
I take a different approach : // In the MainHandler Define('StorageClassName',_MySQL); Class UserController { function __construct($objDataStore=false){ if(!$objDataStore) $this-DataStore = new instanceof($this).STORAGECLASSNAME ; }

RE: [PHP] how call a variable in a text

2009-10-21 Thread David Murphy
This is actually much better the { and } make it very obvious where the variable is and also it can keep odd issues from occurring sometimes. $message=b There is a text {$variable} trial. /b ; There is always sprint type functions also. David -Original Message-

RE: [PHP] how call a variable in a text

2009-10-21 Thread David Murphy
for readability and training other people to understand how you code. This is my personal thoughts on it, everyone has their own prefs. David From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] Sent: Wednesday, October 21, 2009 3:43 PM To: David Murphy Cc: php-general

RE: [PHP] Built-in Debugging

2009-10-16 Thread David Murphy
I have to disagree, while Exception handling and the like have their place. Sometimes when you develop you want to stop execution and look at your memory stack to make sure you didn't over look something. Especially if you are relying on someone else code and it's not a project owned 100%