Top

Andy Jeffries’ Blog: Rebuilding a site from Symfony to Rails

November 6, 2008 · Leave a Comment 

PHPDeveloper.org: Andy Jeffries’ Blog: Rebuilding a site from Symfony to Rails

In a recent entry to his blog Andy Jeffries gives an overview of his site’s transition over from one framework to another - away from Symfony and over to Rails.

Read more from PHPDeveloper.org.

Rudi’s Blog: Get torrent data with PHP

November 5, 2008 · Leave a Comment 

PHPDeveloper.org: Rudi’s Blog: Get torrent data with PHP

This new post to Rudi’s blog shows how, with the help of an external class you can use PHP to grab information from a torrent file.

Read more from PHPDeveloper.org.

Symfony Blog: Plugin Developers Day This Saturday!

November 5, 2008 · Leave a Comment 

PHPDeveloper.org: Symfony Blog: Plugin Developers Day This Saturday!

As this new post on the symfony blog points out, their next Plugin Developers Day is happening this weekend on Saturday, November 8th.

Read more from PHPDeveloper.org.

IBM developerWorks: Build seven good object-oriented habits in PHP

October 30, 2008 · Leave a Comment 

PHPDeveloper.org: IBM developerWorks: Build seven good object-oriented habits in PHP

The IBM developerWorks website has a few suggestions - seven of them, in fact - that they think can help make you a better PHP programmer.

Read more from PHPDeveloper.org.

Sameer’s Blog: Simple Pagination in PHP tutorial

October 29, 2008 · Leave a Comment 

PHPDeveloper.org: Sameer’s Blog: Simple Pagination in PHP tutorial

Sameer has posted a new tutorial to his blog recently, a look at a drop-in solution for pagination in your application - the PEAR Pager package.

Read more from PHPDeveloper.org.

AskAboutPHP.com: CodeIgniter: Organizing views simply

October 28, 2008 · Leave a Comment 

PHPDeveloper.org: AskAboutPHP.com: CodeIgniter: Organizing views simply

New on the AskAboutPHP.com blog, this tutorial concerning CodeIgniter view organization has been posted:

Read more from PHPDeveloper.org.

PHPs Namespace Separator

October 25, 2008 · Leave a Comment 

Perlsphere: PHPs Namespace Separator

Many of you have already heard the PHP news. The rest of you may have
wondered what that strange sound was. That was the sound of tens of
thousands of developer’s jaws dropping all at once. You see, PHP is
getting namespaces and the delimiter is the backslash. Yup. The
backslash: ‘\’ (minus the quotes, obviously).

Apparently they were all set to go with the double-colon ‘::’ separator
when someone pointed out that this is what they use to call a static
class function in PHP:

BloodyToys::giggle();

Uh oh. Now what do you do? Is “BloodyToys” a class or a namespace? In the
Perl world, this might seem like a non-issue because unlike many other
languages, we don’t make a distinction between classes or namespaces. PHP
does and this makes parsing problematic. I suppose that PHP could have
simply died at compile-time if they found an ambiguous declaration (e.g.,
a giggle function defined in both a BloodyToys namespace and a BloodyToys
class), but the developers decided not to do this and frankly, I have no
idea why.

For more on this, I one PHP developer’s comments on the new namespace
decision. It will be interesting to see what comes of this.

Read more from Perlsphere.

Community News: Packt Releases “MediaWiki Skins Design”

October 20, 2008 · Leave a Comment 

PHPDeveloper.org: Community News: Packt Releases “MediaWiki Skins Design”

Packt Publishing has made an announcement about a new book that’s just been released - “MediaWiki Skins Design” (by Richard Carter).

Read more from PHPDeveloper.org.

Gopal Vijayaraghavan’s Blog: PHP Noodle Soup!

October 20, 2008 · Leave a Comment 

PHPDeveloper.org: Gopal Vijayaraghavan’s Blog: PHP Noodle Soup!

Gopal Vijayaraghavan has posted some opinions about the way that several of the popular PHP frameworks work internally, more specifically in their inclusion schemes.

Read more from PHPDeveloper.org.

DevShed: Securing Your Web Application Against Attacks

October 20, 2008 · Leave a Comment 

PHPDeveloper.org: DevShed: Securing Your Web Application Against Attacks

DevShed continues their series focusing on the security of your web application in this fifth part of the series. This time they look at preventing attacks on your app via correct authentication.

Read more from PHPDeveloper.org.

Next Page »

Bottom