Wiley.com
Print this page Share

PHP 5 For Dummies

ISBN: 978-0-7645-4166-7
Paperback
408 pages
April 2004
List Price: US $34.99
Government Price: US $17.84
Enter Quantity:   Buy
PHP 5 For Dummies (0764541668) cover image
This is a Print-on-Demand title. It will be printed specifically to fill your order. Please allow an additional 10-15 days delivery time. The book is not returnable.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
3 43 Code Error
echo _<p>Hello World!</p>_
should be
echo “<p>Hello World!</p>”
3 45 Code Error
echo _<p>Hello World!</p>_
should be
echo “<p>Hello World!</p>”
3 46 Code Error
echo _<p>Hello\n World!</p>_
should be
echo “<p>Hello\n World!</p>”
3 46 Code Error
echo _<p>Hello<br> World!</p>_
should be
echo “<p>Hello<br> World!</p>”
5 81 Code Error
$string = _Hello World!_;
$string = _Hello World!_;
should be
$string = “Hello World!”;
$string = ‘Hello World!’;
5 83 Code Error
$name = "Sam";
$output1 = _$name_;
$output2 = _$name_;
echo $output1;
echo $output2;
should be
$name = "Sam";
$output1 = "$name";
$output2 = '$name';
echo $output1;
echo $output2;
5 84 Code Error
$string = _Where is Sally_s house_;
echo $string;
should be
$string = ‘Where is Sally’s house’;
echo $string;
5 84 Code Error
$string = _Where is Sally\_s house_;
should be
$string = ‘Where is Sally\’s house’;
5 85 Code Error
$string1 = _Hello_;
$string2 = _World!_;
$stringall = $string1.$string2;
echo $stringall;
should be
$string1 = 'Hello';
$string2 = 'World!';
$stringall = $string1.$string2;
echo $stringall;
5 85 Code Error
$stringall = $string1._ _.$string2;
should be
$stringall = $string1." ".$string2;

Related Titles

More By This Author

General Programming & Software Development

by David Buser, John Kauffman, Juan T. Llibre, Brian Francis, Dave Sussman, Chris Ullman, Jon Duckett
by Rob Bovey, Stephen Bullen, John Green, Robert Rosenberg
by John Kauffman, Fabio Claudio Ferracchiati, Brian Matsik, Eric N. Mintz, Jan D. Narkiewicz, Kent Tegels, Donald Xie, John West, Jesudas Chinnathampi, James Greenwood
by Andrew Filev, Tony Loton, Kevin McNeish, Ben Schoellmann, John Slater, Chaur G. Wu
Back to Top