News Feed
Jobs Feed
Sections




News Archive
feed this:

PHPMaster.com:
Localizing PHP Applications "The Right Way", Part 3
November 14, 2011 @ 08:38:48

PHPMaster.com has posted its third part of its "Localizing PHP Applications 'The Right Way'" series. In this third part you'll learn more about locales and message domain switching.

In Part 2 you gained more insight into using the gettext library by learning the most important functions of the extension. In this part you'll learn how to best use a fallback locale, switch between locales, and override the currently selected message domain.

They show you how to set up the directory structure to handle a fallback locale, a choice to use when the system can't determine which to use. By using a default, you also avoid having the system translate from the default language to...the default language (like "English" to "English"). Included are also the code bits you'll need to switch between locales (just using a different domain) and using the dgettext function to specify a different domain than the selected one.

0 comments voice your opinion now!
localize application gettext domain locale series part3


Stefan Mischook's Blog:
Video Tutorial Processing forms with PHP, Part 3
September 25, 2007 @ 10:28:00

Stefan Mischook has posted the third part of his latest video series - processing forms with PHP:

I just released part 3 on how to process forms with PHP: Processing forms with PHP - part 3. This video wraps up my introduction to forms and PHP where I also teach a little about functions along the way. It's about 8 minutes long.

You can check out the previous parts (part 1, part 2) of this series (and lots of other great PHP-related videos) in the PHP Videos section of Stefan's blog.

0 comments voice your opinion now!
video processing form tutorial part3 beginner video processing form tutorial part3 beginner


PHPBuilder.com:
Pro PHP Security / Preventing SQL Injection, Part 3
November 15, 2006 @ 15:01:08

PHPBuilder.com continues their look at preventing SQL injections in your PHP scripts with this new tutorial, the third part of the excerpts from the APress book Pro PHP Security.

They pick up where they left off last time with the creation of an abstraction layer for your application to act as a go-between and filter out possible bad data. They give examples of how to use it to secure a new application, use abstraction libraries like the PearDB functionality, and how to test your application's protection.

0 comments voice your opinion now!
prevent sql injection part3 security abstraction protection prevent sql injection part3 security abstraction protection


DevShed:
Creating the Admin Script for a PHP/MySQL Blogging System (Part 3)
October 17, 2006 @ 11:23:00

DevShed continues their look at the creation of a simple blogging script with part three of the series (part 1, part 2) - the creation of an admin utility to work with the contents of the blog.

The idea is to give the owner of the blog the ability to manage the blog by being able to remove users and articles as required, or to alter the status of users by upgrading them to admin status or banning them. It is also a place where the administrator can start new topics that will then garner their own replies.

They go through the creation of the main admin script (functionality managed with a switch statement, including other external PHP files) and the functions that go in each of those individual files to make things work - managing messages, managing users, and managing categories.

0 comments voice your opinion now!
blogging system part3 mysql admin users messages categories blogging system part3 mysql admin users messages categories


SitePoint PHP Blog:
The Joy of Regular Expressions [3]
September 27, 2006 @ 14:40:00

Harry Fuecks has gotten busy and posted the third part of his "Joy of Regular Expressions" series over on the SitePoint PHP Blog today.

Following on from the last part, this one is more of an intermission-a round up of regex syntax seen so far and a couple of links following feedback.

He looks at two different topics:

  • A "must reads" section of resources for getting the most out of regular expressions
  • A comprehensive "cheat sheet" with tips on expression delimiters, literals, pattern modifiers, character classes, quantifiers, assertions, sub-patterns, and working with the blackslash.

0 comments voice your opinion now!
joy regular expression part3 read cheat sheet syntax joy regular expression part3 read cheat sheet syntax


DevShed:
Client Management for a PHP Invoicing System
September 20, 2006 @ 16:26:38

DevShed continues their look at the creation of an invoicing system today with this new tutorial, "Client Management for a PHP Invoicing System", part 3.

What's an invoicing system that can't manage the data for the clients you're invoicing? This article, the third of four parts, shows how to make managing your clients easy. This part of the system allows you to view a full list of client names, and add, update or remove clients from your database.

They build on the foundations in part one and part two to now create a client management section of the tool. They give you the table structure they use and show you (including the code/interface) how to remove, update, and add new clients to the database.

0 comments voice your opinion now!
client management invoice system part3 database client management invoice system part3 database


DevShed:
A Basic Monitoring Engine in PHP
September 14, 2006 @ 13:44:19

Continuing on in their series of working with stand alone PHP scripts, DevShed has posted this third and last part looking at the creation of a basic script you can use to monitor your server (an excerpt from Advances PHP Programming by George Schlossnagle).

Last week, we continued our discussion of PHP standalone scripts with child processes and more. This week, we conclude our discussion and bring together what you've learned.

They start with the creation of a very basic daemon, including permission restrictions. They then modify this heavily to support the monitoring of processes through various parameters like frequency, status_time, and a description of the service. They then create the full example script and show the usage by checking to see if a URL passed in can be opened.

They also include, as a bonus, another more useful script that will email someone when the specified service goes down (still a HTTP check, though).

0 comments voice your opinion now!
part3 standalone script monitoring engine email http request part3 standalone script monitoring engine email http request


Nefarious Designs:
Object-Oriented PHP Part 3 Taking Relationships Further
August 23, 2006 @ 06:33:31

Nefarious Designs has posted the next part of their "Object-Oriented PHP" series today, the third part looking at how to take the relationships (discussed in part two) even further.

In "Part 1: Definition" we took a look at defining objects and classes in PHP. In "Part 2: Relationships" we looked at linking our objects and classes together. In part 3 I'm going to add to those relationships by looking at visibility, polymorphism and the scope resolution operator.

He starts off with a look at access modifiers (private, public, protected) on both attributes and methods. Next is a look at polymorphism with an example of using a getHTML function in both a base formElement class and the child class of textarea. He then talks about the scope resolution operator (::) and its use in parent/child relationships and in PHP5's scope.

0 comments voice your opinion now!
part3 object oriented relationships further access polymorphism part3 object oriented relationships further access polymorphism


DevShed:
Generating View from MySQL to Simulate the Model-View-Controller Schema in PHP
August 21, 2006 @ 08:46:30

DevShed has posted part three in their "Simulating the Model-View-Controller Schema in PHP" series today, this time focusing on the last of the three, the View.

All right, after refreshing the topics covered previously, as well as clarifying some key concepts with reference to the concrete subject of this series, this journey will continue by constructing yet another practical example to expand your overall knowledge of object-based programming with PHP. In particular, it's designed to show you to use a MVC-driven relationship in another real-world situation.

If you're wondering to what other cases this relationship can be specifically applied, then I have good news for you. In this final article, I'll show you how to implement the MVC schema, in order to generate different outputs (or views) from a given MySQL data set.

They start over with their code, generating a new schema based around a MySQL processing class. The controller pulls its information from the database (our model) as to how the results should be displayed. Next they describe the model to help interface with the actual table and finishing it off with the output class, resulting in either XML or plain-text output of the user information.

1 comment voice your opinion now!
model view controller simulate mysql part3 schema tutorial model view controller simulate mysql part3 schema tutorial


DevShed:
Using Visitor Objects with MySQL Data Sets in PHP 5
August 16, 2006 @ 16:11:58

DevShed is continuing its series on using Visitor objects in PHP5 with this new tutorial today, a look at uisng them in relation to MySQL and sets of data inside.

So far, implementing visitor objects with PHP is indeed a educational process, which helps to extend even more the boundaries of the vast arena of pattern-based programming. Based on this premise, in the course of this last article, I'll expand the application of the visitor pattern by developing a slightly more realistic example. It will show you how to use visitors objects to establish a direct relationship between a MySQL processing class and a pagination mechanism.

They start by establishing an interaction between the visitors and the data in the MySQL database, providing the complete code for the class and the creation of the visitor objects. The wrap it up with a look at the creation of a pagination class, linking the display of a "page" of records to each of the visitors of the site.

2 comments voice your opinion now!
mysql php5 visitor object pagination tutorial part3 mysql php5 visitor object pagination tutorial part3



Community Events











Don't see your event here?
Let us know!


framework conference development interview podcast composer release language database unittest object introduction functional community phpunit opinion testing code example zendframework2

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework