php application

Kurt Payne's Blog: How to Unit Test pcntl_fork()

PHPDeveloper.org  Thu, 01/19/2012 - 13:40

Kurt Payne has a new post to his blog showing how you can unit test your process forking in your PHP application (pcntl).


 

Kevin Schroeder's Blog: Connecting to the Zend Developer Cloud w...

PHPDeveloper.org  Wed, 01/04/2012 - 10:10

Kevin Schroeder has come back around and has posted a new tutorial to his blog showing how to connect PDT to the Zend Developer Cloud (the "PHP Development Tools" extension for the Eclipse IDE).


 

Bradley Holt's Blog: The Twelve-Factor App Applied to PHP

PHPDeveloper.org  Wed, 11/30/2011 - 10:14

Recently a site called The Twelve Factor App surfaced as a guideline for web applications to be at their best.

Bradley Holt has taken these suggestions and has applied them to PHP applications in a few quick comments to each point.


 

Slawek Lukasiewicz's Blog: PHP application diagnostics - Memtrac...

PHPDeveloper.org  Tue, 11/08/2011 - 12:08

Slawek Lukasiewicz has posted about a handy tool that can be used to track memory consumption and performance in your PHP application - memtrack.


 

Henri Bergius' Blog: Composer Solves The PHP Code-Sharing Proble...

PHPDeveloper.org  Wed, 11/02/2011 - 15:28

Henri Bergius has a new post to his blog today about a tool that could help make code reuse across PHP applications a much simpler process.

The Composer tool (and Packagist) make setting up packages and dependencies easy.


 

Uh, uh… SQL injection for auto EXPLAIN - Internet Super Hero

Planet PHP  Tue, 10/18/2011 - 09:48

Would you like to see the EXPLAIN output for all MySQL queries of any PHP application without changing the application much?

Easy-peasy: compile PHP to use the mysqlnd library, install PECL/mysqlnd_uh and paste 22 lines of evil code into your auto_prepend_file . class conn_proxy extends MysqlndUhConnection { public function query($conn, $query, ...


 

PHPMaster.com: Preventing Cross-Site Request Forgeries

PHPDeveloper.org  Wed, 09/28/2011 - 09:12

SitePoint' PHPMaster.com has a new tutorial posted today from Martin Psinas about some tactics to prevent cross-site request forgeries from happening in your PHP application.

The article introduces key concepts of CSRF and how you can keep it from happening in your code.


 

Artur Ejsmont's Blog: How to properly secure remote API calls ov...

PHPDeveloper.org  Mon, 09/19/2011 - 12:56

Artur Ejsmont has a new post with a passionate call to arms for anyone who thinks that just because their URL has "https" in it, it's secure.

He presents his suggestion on how to properly secure SSL API calls for your PHP application.


 

Kevin Schroeder's Blog: Authentication Using Zend_Amf

PHPDeveloper.org  Thu, 07/07/2011 - 08:39

Kevin Schroeder has a new post to his blog today showing how you can use the Zend_Amf component in your Flex+PHP application to authenticate users with the same authentication structure the rest of the application uses.


 

DevShed: Integrate Facebook Comments Code with Wordpress or PHP

PHPDeveloper.org  Thu, 06/23/2011 - 11:16

On DevShed today there's a new tutorial showing you how to integrate Facebook commenting with your PHP application via the Facebook Connect API.