|
|
|
|
|
Errata for Open Source Web Development with LAMP
As many times as we have checked our work, one would hope that there
were no errors in Open Source Web Development with LAMP. However, things slip through the
cracks, or new mistakes are created at the printers.
All known errors are listed below. If you find any problems that are not
listed here please contact
james@opensourcewebbook.com.
Page |
Correction |
10 |
http://www.linuxdoc.org/ should be http://www.tldp.org/ |
47 |
http://www.localhost/ should be http://localhost/ |
68 |
In the two tables at the top of the page, the text "123 Main. St."
should be "123 Main St." |
70 |
"looping though the" should be "looping through the" |
76 |
print "\$answer" equals 'y' or 'Y'\n;" should be:
print "\$answer equals 'y' or 'Y'\n;" |
84 |
xy3z should be xy{3}z
xyz2y should be xyz{2}y
xy3,z should be xy{3,}z
xy3,5z should be xy{3,5}z
|
92 |
The code: $p4 = munge_phone($p2); should be: $p4 = munge_phone($p3); |
108 |
In the spirit of consistency, the links www.perl.org and
www.theperlreview.com should both have trailing slashes. |
220 |
<input type="name" price="NewShoes">
<input type="name" price="NewShoes">
should be:
<input type="hidden" name="name" value="hidden">
<input type="hidden" name="price" value="149.00"> |
290 |
The httpd.conf configuration reads
<Directory>..</Location> when it should read
<Directory>..</Directory>. |
375 |
Right after we went to print with Open Source Web Development with LAMP, a new book was
published on the topic of HTML::Mason entitled Embedding Perl in HTML
With Mason. See our suggested books for more information. |
409 |
In the last two lines of code, $person should be
$numbers. |
|
|