oder
Loggen Sie sich ein, um 1-Click® einzuschalten.
Alle Angebote
Möchten Sie verkaufen? Hier verkaufen
PHP Advanced for the World Wide Web: Visual Quickpro Guide (Visual QuickPro Guides)
 
Größeres Bild
 
Den Verlag informieren!
Ich möchte dieses Buch auf dem Kindle lesen.

Sie haben keinen Kindle? Hier kaufen oder eine gratis Kindle Lese-App herunterladen.

PHP Advanced for the World Wide Web: Visual Quickpro Guide (Visual QuickPro Guides) [Englisch] [Taschenbuch]

Larry Ullman

Preis: EUR 23,99 kostenlose Lieferung. Siehe Details.
  Alle Preisangaben inkl. MwSt.
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Gewöhnlich versandfertig in 2 bis 4 Wochen.
Verkauf und Versand durch Amazon.de. Geschenkverpackung verfügbar.
Dieses Buch gibt es in einer neuen Auflage:
PHP Advanced and Object-Oriented Programming: Visual Quickpro Guide PHP Advanced and Object-Oriented Programming: Visual Quickpro Guide
Melden Sie sich an, um per E-Mail benachrichtigt zu werden, wenn dieser Artikel verfügbar ist.

Produktinformation


Mehr über den Autor

Larry E. Ullman
Entdecken Sie Bücher, lesen Sie über Autoren und mehr

Besuchen Sie die Seite von Larry E. Ullman auf Amazon

Produktbeschreibungen

Kurzbeschreibung

PHP is a server-side, HTML-embedded scripting language. It's frequently being used to replace the functionality created by Perl to write CGI scripts. (If you've ever registered at a Web site, chances are you've encountered CGI). Similar to both HTML and CGI, PHP is faster to program in and faster to execute than CGI. PHP was written specifically for Web site creation, unlike Perl, C, or Java. And companies such as Honda, Patagonia, and Zoom.com all have Web sites utilizing PHP. PHP Advanced for the World Wide Web: Visual QuickPro Guide consists of approximately fifteen chapters of step-by-step content, aimed at teaching specific topics in direct, focused segments. The scripts featured in this book are based on features and capabilities that current PHP users most frequently inquire about (e.g. sessions, authentication, and object-oriented programming). as well as detailing those technologies that will be more important in the future, such as XML and Wireless Access Protocols.

Synopsis

PHP is a server-side, HTML-embedded scripting language. It's frequently being used to replace the functionality created by Perl to write CGI scripts. (If you've ever registered at a Web site, chances are you've encountered CGI). Similar to both HTML and CGI, PHP is faster to program in and faster to execute than CGI. PHP was written specifically for Web site creation, unlike Perl, C, or Java. And companies such as Honda, Patagonia, and Zoom.com all have Web sites utilizing PHP. PHP Advanced for the World Wide Web: Visual QuickPro Guide consists of approximately fifteen chapters of step-by-step content, aimed at teaching specific topics in direct, focused segments. The scripts featured in this book are based on features and capabilities that current PHP users most frequently inquire about (e.g. sessions, authentication, and object-oriented programming). as well as detailing those technologies that will be more important in the future, such as XML and Wireless Access Protocols.

Tags

 (Was ist das?)
Bei einem Tag handelt es sich um ein Schlagwort, das zum Produkt passt.
Tags erleichtern allen Kunden die Suche und die Sortierung ihrer Lieblingsprodukte.
 

Eine digitale Version dieses Buchs im Kindle-Shop verkaufen

Wenn Sie ein Verleger oder Autor sind und die digitalen Rechte an einem Buch haben, können Sie die digitale Version des Buchs in unserem Kindle-Shop verkaufen. Weitere Informationen

Kundenrezensionen

Es gibt noch keine Kundenrezensionen auf Amazon.de
5 Sterne
4 Sterne
3 Sterne
2 Sterne
1 Sterne
Die hilfreichsten Kundenrezensionen auf Amazon.com (beta)
Amazon.com:  15 Rezensionen
9 von 9 Kunden fanden die folgende Rezension hilfreich
Barely "Advanced", maybe Intermediate 4. Juni 2003
Von "grumpychris" - Veröffentlicht auf Amazon.com
Format:Taschenbuch
I've gotten to the point now after 3 years of PHP coding that I can write database based applications in my sleep. I'm familiar with at least 60% of the non-database related PHP functions. I consider myself an advanced PHP programmer.

When I read through this book, I found myself wanting more. Sure, it opened my eyes up to a few functions I wasn't familiar with (such as using true type fonts for images), but I found it to be lacking overall. I was surprised that the ob_start()/ob_get_contents() related functions weren't even mentioned with the ultra basic templating class used at the beginning of the book. Nor was custom error handling even touched on.

That's not to say that the book doesn't have any good qualities. The OOP chapter, while brief, was at least useful. And I absolutely loved the coding style in the book (all other book publishers should take a lesson from this). New lines of code are highlighted as red, and shown exactly where they're supposed to go in relation to the code written 3 pages (or even 3 chapters) ago. It's unfortunate that a CD of the sample code was not provided.

7 von 7 Kunden fanden die folgende Rezension hilfreich
Worth the 20 bucks 2. Mai 2002
Von spunk - Veröffentlicht auf Amazon.com
Format:Taschenbuch
I came across this book while trying to find a more advanced PHP book. I own many on on the subject and have tired of them all covering the same handful of topics. I was after more of a "PHP theory" book. Something that takes the next step beyond syntax and reference (both of which are abundant online for free) and tackle the "how to put it all together" issues.

This book was one of the only books to start down that path. While not perfect, it begins to focus more on concepts than content. It's exactly what I expect from a Visual Quick-guide/start book. It gets you going and leaves you wanting more (which I think is a good thing). I am hopeful that someone will pick up on this idea and expand upon it.

Either way, this book offers far more than [price] worth of thought provoking information and insight. And while I wouldn't recommend it for your only PHP book, I would advise you to pick it up if you are looking to add to your knowledge.

6 von 6 Kunden fanden die folgende Rezension hilfreich
Not impressed. 26. April 2002
Von Tom Anderson - Veröffentlicht auf Amazon.com
Format:Taschenbuch
I was swayed to buy this book instead of the O'Reilly book because the reviews were all great and the book looked decent. The level of coverage is what I was looking for and both books were geared towards experienced programmers who want to get past the basics quickly. That summarizes what I like about the book.

However, the more I read, the less impressed I have become. As an experience programmer I keep noticing examples and descriptions of things that most experienced programmers wouldn't do. Here are a few examples:
* Examples use extensions like .inc and .class even though he describes the security issues with these extensions. If you copy the examples without reading this sidebar you might be doing yourself a misservice.
* The example demonstrating inheritance is a case where you probably shouldn't use inheritance. In other words, it's a technically correct example but probably not a good design. People who learn by example may learn bad habits.
* Also in the inheritance example, he includes both the inherited class and base class files in the file that uses the inherited class. I think most experienced programmers would have made the inherited class include the base class definition so the programmer only needs to include the class they are dealing with.

I may be nitpicking a bit and this book might turn out to be a decent reference. However I find myself taking everything with a grain of salt after seeing these types of subtle misteps. From an advanced book I expect a bit more.

Bottom line: I wish I had bought the O'Reilly book (though I haven't reviewed it so you should do your own comparisons).


Kunden diskutieren

Das Forum zu diesem Produkt
Diskussion Antworten Jüngster Beitrag
Noch keine Diskussionen

Fragen stellen, Meinungen austauschen, Einblicke gewinnen
Neue Diskussion starten
Thema:
Erster Beitrag:
Eingabe des Log-ins
 


Aktive Diskussionen in ähnlichen Foren
Kundendiskussionen durchsuchen
Alle Amazon-Diskussionen durchsuchen
   
Ähnliche Foren


Lieblingslisten


Ähnliche Artikel finden


Anhand des Sachgebietes nach ähnlichen Produkten suchen:


Ihr Kommentar


Datenschutzerklärung von Amazon.de Versandbedingungen von Amazon.de Umtausch- & Rücknahme bei Amazon.de