PHP 5 For DummiesISBN: 978-0-7645-4166-7
Paperback
408 pages
April 2004
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.
Chapter | Page | Details | Date | Print 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; |