Rob Allen's Blog: Validating dates
In a new Zend Framework related post to his blog today Rob Allen takes a look at a different operating mode he found with Zend_Date changing how it handles format specifiers. I discovered recently...
View ArticleZoomzum Blog: 10 Powerful PHP Regular Expression For Developers
On the Zoomzum blog there's a new post with ten regular expressions PHP developers can use to accomplish some common tasks (like email validation and date formatting checks). Regular expression for...
View ArticleCourt Ewing's Blog: Create and Validate a Choice List in a Symfony 2 Form
Court Ewing has written up a new post to his blog about creating a "choice" list (a select list as defined by Symfony 2) with dynamic options and validating the resulting submission. His example uses...
View ArticleSkyTechGeek.com: 10 Exceptional Tools For Website Testing
Sometimes a little (external) testing of your website is in order and Gagan Chhatwal has posted his list of ten tools you can use to check everything from how much load the site can take to what can...
View ArticleDeveloperDrive.com: What Web Developers Need to Know About Cross-Site Scripting
On the DeveloperDrive.com site there's a recent post anyone wondering about cross-site scripting should give a read. They introduce you to the basic concept and two things you can do to help prevent...
View ArticleStuart Herbert's Blog: ContractLib - An Introduction & Comparing it to PHP's...
Stuart Herbert has two new posts to his blog showing how to use the ContractLib tool he's created to define programming "contracts". In the first he shows some sample usage of the tool and in the...
View ArticlePHPMaster.com: PHP Security: Cross-Site Scripting Attacks (XSS)
PHPMaster.com has a new tutorial posted today (by George Fekete) about preventing cross-site scripting attacks in your PHP-based applications. Unfortunately, cross-site scripting attacks occurs...
View ArticleReddit.com: Protecting against attack?
In this recent post to Reddit.com, the question of application security is asked - the poster wants recommendations on how he should keep his app safe from would-be attackers: I can code fairly well...
View ArticlePHPMaster.com: Creating a PHP OAuth Server
On PHPMaster.com today there's a new tutorial posted about creating your own OAuth server in PHP using the oauth-php package to do the "heavy lifting". If you've ever integrated with another API that...
View ArticleMike Dalisay: Salt, Hash and Store Passwords Securely with Phpass
On Mike Dalisay's site there's a recent post showing how to use the Phpass tool to salt, hash and store passowrd data in your application. I think the main reason why we have to hash passwords is to...
View ArticleAlison Gianotto: Check User-Submitted URLs for Malware and Phishing in Your...
In her latest post Alison Gianotto looks at a few different ways that you can validate any URLs that your users might give you to ensure they're not anything malicious. She looks at two of the major...
View ArticleMaster Zend Framework: Using Sessions In Zend Framework 2 - Part 2
The Master Zend Framework continues its series about using sessions in Zend Framework 2 applications. In part two of the series he focuses on validators and some of the backend storage options the...
View ArticleMaster Zend Framework: How to Use ZFTool Diagnostics To Ensure Your Modules Work
The Master Zend Framework site has a new tutorial today showing you how to use the ZFTool diagnostics to make sure your modules are working correctly. The ZFTool is a stand-alone tool that can help...
View ArticleRob Allen: Validating JSON with ZF2's ZendValidator
Rob Allen has a quick post today showing how to use the ZendValidator component from Zend Framework 2 to handle JSON validation. Let's say that you have an admin form where the user can enter JSON and...
View ArticleJoshua Thijssen: Advanced user switching
Joshua Thijssen has a new post today with a "neat trick" that the Symfony Security component allows - switching (impersonating) another user programatically. This allows you to login as another user,...
View ArticleEric Barnes: How To: Validate an array of form fields with Laravel
Eric Barnes has a new post to his site showing you how to validate form input in a Laravel application using the form requests feature. If you've used Laravel's form validation for any length of time,...
View ArticleMarc Aube: Design Pattern: Specification
Marc Aube has a new post to his site that introduces you to the specification design pattern, a technique that's useful for ensuing the current state of an object is valid. The specification pattern...
View Article