Everyday Computing Advanced Computing The Internet At Home Health, Mind & Body Making & Managing Money Sports & Leisure Travel Beyond The Classroom
Certification
Databases
Networking
Programming
Moms, Dads, and Grads -- Win $500!
PHP 5 For Dummies

PHP 5 For Dummies


By Janet Valade

ISBN: 978-0-7645-4166-7
Format: Paper
Pages: 416 Pages
Pub. Date: April 2004

E-mail a Friend About This Book
Price: $21.99
Description
Author Information
Table of Contents
Read Excerpt (PDF)
Errata

Ch

Pg

Is

Should be

3
43
echo _<p>Hello World!</p>_ echo “<p>Hello World!</p>”
3
45
echo _<p>Hello World!</p>_ echo “<p>Hello World!</p>”
3
46
echo _<p>Hello\n World!</p>_ echo “<p>Hello\n World!</p>”
3
46
echo _<p>Hello<br> World!</p>_ echo “<p>Hello<br> World!</p>”
4
61
$age = __; $age = “”;
5
81
$string = _Hello World!_;
$string = _Hello World!_;
$string = “Hello World!”;
$string = ‘Hello World!’;
5
83
$name = "Sam";
$output1 = _$name_;
$output2 = _$name_;
echo $output1;
echo $output2;
$name = "Sam";
$output1 = "$name";
$output2 = '$name';
echo $output1;
echo $output2;
5
84
$string = _Where is Sally_s house_;
echo $string;
$string = ‘Where is Sally’s house’;
echo $string;
5
84
$string = _Where is Sally\_s house_; $string = ‘Where is Sally\’s house’;
5
85
$string1 = _Hello_;
$string2 = _World!_;
$stringall = $string1.$string2;
echo $stringall;
$string1 = 'Hello';
$string2 = 'World!';
$stringall = $string1.$string2;
echo $stringall;
5
85
$stringall = $string1._ _.$string2; $stringall = $string1." ".$string2;
Related Articles
Building Protocol State Machines in UML 2
Storing Data with PHP — Flat File or Database?
Troubleshooting a PHP Script
Considering the Various Uses for the PHP Scripting Language
Understanding PHP Data Types
Related Titles
XML All-in-One Desk Reference For Dummies
BEA WebLogic Server 8 For Dummies
Visual Basic.NET All-In-One Desk Reference For Dummies 
Apache, MySQL, and PHP Web Development All-in-One Desk Reference For Dummies
CliffsNotes Creating Your First Web Page