Tutoriale PHP
  Comunitatea PHP Romania
 

 
Tutoriale PHP

Noutati

0
Vot(uri)
Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 16:17 | alfahost_ro | 1 accesari

Ivan Iordanov has posted a method he's come up with to extend the existing Zend_Db_Table functionality (of the Zend Framework) to create NestedSet models for your app.

Last days I've been trying to customize Zend's Framework. My goal is to create simpler models. Currently I'm making some db models that handle stuff around wide used designs. Such design is the Nested Set model. It is an adjacent list realized in SQL as a tree. You can find a good introduction to nested sets at mysql developer zone.

He steps through the creation of some example database tables, his class and controller to hook into the Zend Framework application and this
Citeste mai mult | Comentarii (0) | Salveaza | Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models la Digg.com 

0
Vot(uri)
Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 16:17 | alfahost_ro | 3 accesari

Ivan Iordanov has posted a method he's come up with to extend the existing Zend_Db_Table functionality (of the Zend Framework) to create NestedSet models for your app.

Last days I've been trying to customize Zend's Framework. My goal is to create simpler models. Currently I'm making some db models that handle stuff around wide used designs. Such design is the Nested Set model. It is an adjacent list realized in SQL as a tree. You can find a good introduction to nested sets at mysql developer zone.

He steps through the creation of some example database tables, his class and controller to hook into the Zend Framework application and this
Citeste mai mult | Comentarii (0) | Salveaza | Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models la Digg.com 

0
Vot(uri)
Community News: PHP Women Article Contest Update
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 15:24 | alfahost_ro | 2 accesari

We've mentioned it before but we just wanted to remind you again about the article contest that the PHP Women are holding with fame and glory going to the winners (oh, and there's prizes too).

The topic is "Best Practices" and all you have to do to enter is submit an article - long, short, good or bad - over in the Best Practices forum on their site. Want an example? Check this one out.

Now for the good part - there'll be two winners: the best two entries will get the top of the line prizes, licenses for Zend Studio for Eclipse) and, of those two, one will get inclusion of their article into a future issue of Linux Pro Magazine. The other will be

0
Vot(uri)
Community News: PHP Women Article Contest Update
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 15:24 | alfahost_ro | 2 accesari

We've mentioned it before but we just wanted to remind you again about the article contest that the PHP Women are holding with fame and glory going to the winners (oh, and there's prizes too).

The topic is "Best Practices" and all you have to do to enter is submit an article - long, short, good or bad - over in the Best Practices forum on their site. Want an example? Check this one out.

Now for the good part - there'll be two winners: the best two entries will get the top of the line prizes, licenses for Zend Studio for Eclipse) and, of those two, one will get inclusion of their article into a future issue of Linux Pro Magazine. The other will be

0
Vot(uri)
Developer Tutorials Blog: Getting Started with ORM in PHP
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 14:35 | alfahost_ro | 2 accesari

A recent post on the Developer Tutorials blog takes a look at a fundamental part of several of the PHP (and other language) frameworks out there - the Object Relational Mapping (ORM) layer for database access.

Instead of direct database access, an ORM layer in a PHP framework can make "objects" stored in a database behave like actual objects from a programming perspective - for example, creating a new "car" stored in the database could involve a call to $car->new(). By abstracting actual database access, web development can be more productive and result in more reliable applications. Here's a quick intro to ORM in PHP.

They talk about ORM's role in how applications interface with data (abstracted out to objects) and some examples of it in
Citeste mai mult | Comentarii (0) | Salveaza | Developer Tutorials Blog: Getting Started with ORM in PHP Developer Tutorials Blog: Getting Started with ORM in PHP la Digg.com 

0
Vot(uri)
Developer Tutorials Blog: Getting Started with ORM in PHP
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 14:35 | alfahost_ro | 3 accesari

A recent post on the Developer Tutorials blog takes a look at a fundamental part of several of the PHP (and other language) frameworks out there - the Object Relational Mapping (ORM) layer for database access.

Instead of direct database access, an ORM layer in a PHP framework can make "objects" stored in a database behave like actual objects from a programming perspective - for example, creating a new "car" stored in the database could involve a call to $car->new(). By abstracting actual database access, web development can be more productive and result in more reliable applications. Here's a quick intro to ORM in PHP.

They talk about ORM's role in how applications interface with data (abstracted out to objects) and some examples of it in
Citeste mai mult | Comentarii (0) | Salveaza | Developer Tutorials Blog: Getting Started with ORM in PHP Developer Tutorials Blog: Getting Started with ORM in PHP la Digg.com 

0
Vot(uri)
SitePoint PHP Blog: Keeping current with PHP
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 13:47 | alfahost_ro | 3 accesari

Today on the SitePoint PHP blog Troels Knak-Nielsen reminds the community about a "one-stop resource" that they can use to keep up to date on some of the latest happenings with the PHP language, the PHP.net wiki.

Since March, there has been a wiki at wiki.php.net. The most interesting section is probably wiki.php.net/rfc, which - as the name implies - contains RFC's for improvements of the language. I've rambled on about closures and lambdas before, but as you can see, there is now an accepted patch. Whether it'll make it into 5.3 is unlikely at this point, but it l
0
Vot(uri)
SitePoint PHP Blog: Keeping current with PHP
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 13:47 | alfahost_ro | 1 accesari

Today on the SitePoint PHP blog Troels Knak-Nielsen reminds the community about a "one-stop resource" that they can use to keep up to date on some of the latest happenings with the PHP language, the PHP.net wiki.

Since March, there has been a wiki at wiki.php.net. The most interesting section is probably wiki.php.net/rfc, which - as the name implies - contains RFC's for improvements of the language. I've rambled on about closures and lambdas before, but as you can see, there is now an accepted patch. Whether it'll make it into 5.3 is unlikely at this point, but it l
0
Vot(uri)
Zend_Acl and MVC Integration Part II (Advanced Use)
Sursa: http://www.zend.com | Miercuri 16 Iulie 2008 13:39 | alfahost_ro | 1 accesari

In the previous article we saw how to setup our Zend_Acl instance and how to attach it to the MVC environment (by using the Front Controller Plugin), but what about setting another action for the denied access, or how does an article be edited only by its owner?, this, and some more is what we are going to see in the following examples.



0
Vot(uri)
Handling Attachments in MIME Email with PHP
Sursa: http://www.devshed.com/ | Miercuri 16 Iulie 2008 13:00 | alfahost_ro | 2 accesari

In this second tutorial of the series I m going to teach you how to improve the initial structure of the MIME mailer class developed in the first article by giving it the ability to work directly with attachments. Sounds fairly interesting right Then don t waste any more time in preliminaries and begin reading this article now ...
Villanova University Six Sigma & IT Certificate Programs 100% Online programs in Six Sigma, IS Security, CISSP Prep, Business Analysis, Proj. Mgmt. and more!
0
Vot(uri)
Chris Hartjes' Blog: What's In Chris' Brain, July 2008 Edition
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 12:56 | alfahost_ro | 2 accesari

Chris Hartjes has made made a few comments on his blog about things going on in the online world - two of which pertain to PHP:

  • Closures and lambdas coming to PHP - he mentions the addition of lambdas and closures into the next major version of PHP (5.3) and his thoughts on how they've been abused in the past.
  • The Framework Jihad:
    If you substitute "modularized code with standardized API" for "framework", would that make people feel better? I use frameworks because so much of the infrastructure code is stuff I DO NOT WANT TO WRITE ANY MORE. After 10 years of doing this, it's time I stopped rei
0
Vot(uri)
Chris Hartjes' Blog: What's In Chris' Brain, July 2008 Edition
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 12:56 | alfahost_ro | 2 accesari

Chris Hartjes has made made a few comments on his blog about things going on in the online world - two of which pertain to PHP:

  • Closures and lambdas coming to PHP - he mentions the addition of lambdas and closures into the next major version of PHP (5.3) and his thoughts on how they've been abused in the past.
  • The Framework Jihad:
    If you substitute "modularized code with standardized API" for "framework", would that make people feel better? I use frameworks because so much of the infrastructure code is stuff I DO NOT WANT TO WRITE ANY MORE. After 10 years of doing this, it's time I stopped rei
0
Vot(uri)
Community News: Latest Releases from PHPClasses.org
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 12:07 | alfahost_ro | 2 accesari

0
Vot(uri)
Community News: Latest Releases from PHPClasses.org
Sursa: http://www.phpdeveloper.org | Miercuri 16 Iulie 2008 12:07 | alfahost_ro | 3 accesari

0
Vot(uri)
Google’s Flash Indexing Disaster
Sursa: http://www.sitepoint.com | Miercuri 16 Iulie 2008 4:58 | alfahost_ro | 2 accesari

On July 1st, Google announced that, using technology provided by Adobe, it had enhanced the Google Search Engine to index the text embedded within Flash movies. What followed was bad advice from Google, second-guessing by web developers, and finally a few straight answers.

Ultimele discutii in forum RSS Forum

Ultimele articole Ultimele articole

Top membri

Pirahna Pirahna
acasa , in pat
carco carco
Bucuresti
Birkoff Birkoff
Bucuresti
Mascka Mascka
Braila
raul_ raul_
whooper whooper
Toronto ON
mihaitha mihaitha
Sibiu
gabysolomon gabysolomon
Bacau
oriceon oriceon
Constanta
garlicinicolae garlicinicolae

Newsletter


Email:
 inscriere
 renuntare
 
 Arhiva newsletter

Site-ul lunii

blg
 Blgpunctro

Propune un site

Online

212 utilizatori online

Parteneriat



Copyright © 2001-2008 PHP Romania Add PHPRomania to Google Add PHPRomania to Del.icio.us Add PHPRomania to Stumbleupon Add PHPRomania to Yahoo! Add PHPRomania to Digg Add PHPRomania to Blink Remortgages | Credit Cards | Credit Cards | Turbo Tax | Mortgage
Ads: Partener Way2Web Nework: gazduire web | inregistrare domenii | web design | imobiliare | web hosting
Powered by Simplis