Errata

Web Database Applications with PHP, and MySQL

Errata for Web Database Applications with PHP, and MySQL

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 38
3rd paragraph

$var *=2 // $var is still a float == 3

should be

$var *=2 // $var is still a float == 3.0

Anonymous  Jan 27, 2010 
Printed Page 232
(7a) Are there any previous pages?

in the condition "if ($rowOffset > 0)", there is an assumption that $rowOffset will
be a multiple of ROWS. however, a user can explicitly specify the offset simply by
changing the parameter by typing a new value in the url passed to the browser.
therefore, we cannot assume that $rowOffset will be a multiple of ROWS. a safer
condition would be "if( $previousOffset >= 0 )"

Anonymous   
Printed Page 265
Example 8-10

The value for the color attribute of the font tag in the error display template is
not a legal value:
<font color="font">

Anonymous