Cheap Web Hosting and Domain Registration - Dayana Host Cheap Web Hosting and Domain Registration - Dayana Host Cheap Web Hosting and Domain Registration - Powered by Dayana Networks   Cheap Web Hosting with Instant Account Activation by Dayana Host
More than 67,166 web sites hosted. Latest client joined at Oct 11, 2008, 8:34pm PDT

Useful Books and Software

Related PostgreSQL Books

     
 
Books and Software > Books > PostgreSQL > Page 1 > PHP and PostgreSQL Advanced Web Programming (Developer's Guide)
 
     
 
PHP and PostgreSQL Advanced Web Programming (Developer's Guide)
 
4.0 of 5.0
 
PHP and PostgreSQL Advanced Web Programming (Developer's Guide)

Sams¿ PHP and MySQL Web Development, by Luke Welling and Laura Thomson, showed that there is a strong demand for books that describe how to use PHP together with a specific open-source database to develop Web applications.

While MySQL is very popular, PostgreSQL is widely considered to be the more powerful of the two open-source databases. And PostgreSQL is rapidly gaining market share large organizations are beginning to use PostgreSQL instead of Oracle; the demand for PostgreSQL training and support has increased by some accounts 50% in the last six months; and Web hosting services increasingly offer PostgreSQL along with MySQL.

PHP and PostgreSQL Advanced Web Programming focuses on the specific needs of a PostgreSQL developer and will detail how to make use of PostgreSQL¿s unique, advanced features to develop high-availability, fail-safe Web applications with PHP and PostgreSQL.



 
Publisher: Sams
Authors: Ewald Geschwinde, Hans-Juergen Schoenig
Release Date: 2002-06-14
ISBN/EAN: 0672323826 / 9780672323829

New Price: $21.77 / Used Price: $11.64 / Collectible Price: n.a.
Buy it Now!
Average Rating: 4.0
Number of Reviews: 12

 

excellent practical guideRating:
Dispite some minor discrepencies pointed out by another reviewer, the information in this book is very useful. If you want to build complex database web applications with PHP, then Postgres is the right RDBMS to use and this book is the right book to guide you. Well worth the money.
Total Votes: 4, Helpful Votes: 3, Date: 2004-05-03
 
One star is too many: don't buy this book.Rating:
It's hard to argue than any book has absolutely zero value: even the world's worst book (and this one may be in the running) probably contains some useful information. However, in a worthwhile book, I expect to find a good deal of useful information, and more than that, I expect not to find false information. There are enough errors in the first 60 pages of this book that I am not going to bother reading the rest of it.

Example: p. 50 shows this code segment

$a=23;
$b=34;
if ($a > $b)
{
echo 'a is higher than b';
}
else
{
echo 'b is higher than a';
}
?>

The merest child, although evidently not SAMS technical editors, can see the elementary error here, which occurs when $a = $b.

Example: p. 53 shows this code segment

$a=18;
$b=19;
if ($a xor $b)
{
echo '$a and $b are the same';
}
else
{
echo '$a and $b are not the same';
}
?>

with the comment that the code will return "$a and $b are not the same".

If the author's earlier comment, that "False is returned if both values are the same", is correct, then this is obviously backwards, but beyond that, what is the basis of the comparison? In other languages I'm familiar with, XOR compares two Boolean values, or possibly performs a bitwise comparison on byte values. Are the authors telling us that in PHP XOR performs the same function as the inequality operator? Or is it that in PHP even numbers are True and odd numbers are False? Or what?

The most likely explanation is that this example is simply garbage, and I strongly suspect that the rest of the book, which I no longer intend to read, is the same. I don't know much about PHP, which is why I bought the book, but I know enough about other programming languages to know that I can't have any faith in what this book tells me.

Total Votes: 25, Helpful Votes: 9, Date: 2003-08-29
 
Good for beginners but flawed.Rating:
I knew nothing about PHP or SQL before getting this book and I have had little programming experience. I found it pretty well suited to my needs. O'Reilly's Programming PHP on the other hand was too advanced and not written as a beginners text. I did find the O'Reilly book useful however as the PHP and PostgreSQL.... has a lot of coding errors that are very confusing. Hopefully these will be dealt with in the second edition. While I have some problems with the book I think there isn't a good alternative for someone at my level.
Total Votes: 4, Helpful Votes: 2, Date: 2003-08-26
 
Great ResourceRating:
Very well laid out, well written, contains all information needed to make your PostGreSQL and PHP project a success.
Total Votes: 7, Helpful Votes: 0, Date: 2003-06-16
 
An expensive wasteRating:
Nothing new here, said in 800 pages. You are much better off to get Julie Meloni's work on PHP and Jeff Perkins book on Postgres.
Total Votes: 10, Helpful Votes: 2, Date: 2002-09-22
 
excellent practical guideRating:
Dispite some minor discrepencies pointed out by another reviewer, the information in this book is very useful. If you want to build complex database web applications with PHP, then Postgres is the right RDBMS to use and this book is the right book to guide you. Well worth the money.
Total Votes: 4, Helpful Votes: 3, Date: 2004-05-03
 
One star is too many: don't buy this book.Rating:
It's hard to argue than any book has absolutely zero value: even the world's worst book (and this one may be in the running) probably contains some useful information. However, in a worthwhile book, I expect to find a good deal of useful information, and more than that, I expect not to find false information. There are enough errors in the first 60 pages of this book that I am not going to bother reading the rest of it.

Example: p. 50 shows this code segment

$a=23;
$b=34;
if ($a > $b)
{
echo 'a is higher than b';
}
else
{
echo 'b is higher than a';
}
?>

The merest child, although evidently not SAMS technical editors, can see the elementary error here, which occurs when $a = $b.

Example: p. 53 shows this code segment

$a=18;
$b=19;
if ($a xor $b)
{
echo '$a and $b are the same';
}
else
{
echo '$a and $b are not the same';
}
?>

with the comment that the code will return "$a and $b are not the same".

If the author's earlier comment, that "False is returned if both values are the same", is correct, then this is obviously backwards, but beyond that, what is the basis of the comparison? In other languages I'm familiar with, XOR compares two Boolean values, or possibly performs a bitwise comparison on byte values. Are the authors telling us that in PHP XOR performs the same function as the inequality operator? Or is it that in PHP even numbers are True and odd numbers are False? Or what?

The most likely explanation is that this example is simply garbage, and I strongly suspect that the rest of the book, which I no longer intend to read, is the same. I don't know much about PHP, which is why I bought the book, but I know enough about other programming languages to know that I can't have any faith in what this book tells me.

Total Votes: 25, Helpful Votes: 9, Date: 2003-08-29
 
Good for beginners but flawed.Rating:
I knew nothing about PHP or SQL before getting this book and I have had little programming experience. I found it pretty well suited to my needs. O'Reilly's Programming PHP on the other hand was too advanced and not written as a beginners text. I did find the O'Reilly book useful however as the PHP and PostgreSQL.... has a lot of coding errors that are very confusing. Hopefully these will be dealt with in the second edition. While I have some problems with the book I think there isn't a good alternative for someone at my level.
Total Votes: 4, Helpful Votes: 2, Date: 2003-08-26
 
Great ResourceRating:
Very well laid out, well written, contains all information needed to make your PostGreSQL and PHP project a success.
Total Votes: 7, Helpful Votes: 0, Date: 2003-06-16
 
An expensive wasteRating:
Nothing new here, said in 800 pages. You are much better off to get Julie Meloni's work on PHP and Jeff Perkins book on Postgres.
Total Votes: 10, Helpful Votes: 2, Date: 2002-09-22
 
excellent practical guideRating:
Dispite some minor discrepencies pointed out by another reviewer, the information in this book is very useful. If you want to build complex database web applications with PHP, then Postgres is the right RDBMS to use and this book is the right book to guide you. Well worth the money.
Total Votes: 4, Helpful Votes: 3, Date: 2004-05-03
 
One star is too many: don't buy this book.Rating:
It's hard to argue than any book has absolutely zero value: even the world's worst book (and this one may be in the running) probably contains some useful information. However, in a worthwhile book, I expect to find a good deal of useful information, and more than that, I expect not to find false information. There are enough errors in the first 60 pages of this book that I am not going to bother reading the rest of it.

Example: p. 50 shows this code segment

$a=23;
$b=34;
if ($a > $b)
{
echo 'a is higher than b';
}
else
{
echo 'b is higher than a';
}
?>

The merest child, although evidently not SAMS technical editors, can see the elementary error here, which occurs when $a = $b.

Example: p. 53 shows this code segment

$a=18;
$b=19;
if ($a xor $b)
{
echo '$a and $b are the same';
}
else
{
echo '$a and $b are not the same';
}
?>

with the comment that the code will return "$a and $b are not the same".

If the author's earlier comment, that "False is returned if both values are the same", is correct, then this is obviously backwards, but beyond that, what is the basis of the comparison? In other languages I'm familiar with, XOR compares two Boolean values, or possibly performs a bitwise comparison on byte values. Are the authors telling us that in PHP XOR performs the same function as the inequality operator? Or is it that in PHP even numbers are True and odd numbers are False? Or what?

The most likely explanation is that this example is simply garbage, and I strongly suspect that the rest of the book, which I no longer intend to read, is the same. I don't know much about PHP, which is why I bought the book, but I know enough about other programming languages to know that I can't have any faith in what this book tells me.

Total Votes: 25, Helpful Votes: 9, Date: 2003-08-29
 
Good for beginners but flawed.Rating:
I knew nothing about PHP or SQL before getting this book and I have had little programming experience. I found it pretty well suited to my needs. O'Reilly's Programming PHP on the other hand was too advanced and not written as a beginners text. I did find the O'Reilly book useful however as the PHP and PostgreSQL.... has a lot of coding errors that are very confusing. Hopefully these will be dealt with in the second edition. While I have some problems with the book I think there isn't a good alternative for someone at my level.
Total Votes: 4, Helpful Votes: 2, Date: 2003-08-26
 
Great ResourceRating:
Very well laid out, well written, contains all information needed to make your PostGreSQL and PHP project a success.
Total Votes: 7, Helpful Votes: 0, Date: 2003-06-16
 
An expensive wasteRating:
Nothing new here, said in 800 pages. You are much better off to get Julie Meloni's work on PHP and Jeff Perkins book on Postgres.
Total Votes: 10, Helpful Votes: 2, Date: 2002-09-22
 
 
     
Dayana Host
  Home
  Process Guide
  Affiliate Program
  Testimonials
  Sample Clients
  CPanel Demo
  AUP / ASP / TOS
   
Network and tools
  Network Maps
  Network Status
 

NS Lookup

  Whois Search
   
Product and Services
  Domain Registration
  Say5 Web Hosting
  Personal Web Hosting
  Business Web Hosting
  Reseller Web Hosting
  Dedicated Servers
  Traffic Blazer
  Web Design Themes
  Members Area
   
Customer Support
  Support Center
  Forums
  CPanel Tutorials
  FAQ
  Getting Started Guide
  Useful Links
  Downloads
  Books and Software
   
Contact us
  Contact
  Customer Service
   
   

Say5 Hosting Control Panel
© Copyrights 1998-2008 Dayana Networks. All rights reserved. Privacy Policy - AUP/ASP/TOS

Home | Process Guide | Affiliate Program | Network Maps | Testimonials | Uptime Monitor | Contact | Table of Contents | phpOnline
Domain Registration | Personal Web Hosting Plans | Business Web Hosting Plans | Reseller Web Hosting Plans | Sample Clients
Customer Service | Support Center | Forums | Control Panel Demo | Useful Resources and links | Books and Software
CPanel and WHM Tutorials | Web Site Design Templates | Upgrade, Renew and Maintenance | Free Counter | NS Lookup | Whois
Acceptable Use Policy, Anti Spam Policy, Terms of Services | Privacy Policy