-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZSP
159 lines (119 loc) · 2.3 KB
/
ZSP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
1
INTRO TO PROGRAMMING
Language and the Logic of Programming
Types of Programming Languages and Vocabulary
What is PHP
Why use PHP
2
PHP LANGUAGE BASICS
Syntax
Quotes
Comments
Special Characters
Data Types
Precedence
Symbols
3
PHP IDENTIFIERS
Variables
Constants
Arrays
4
PHP CONTROL FLOW BASICS
Operators
Conditionals
5
PHP FUNCTIONAL BASICS
Functions
Function Design Tools
File Systems (Handling)
6
FILE SYSTEM BASICS
Constants
Commonly Used File Functions
File System Performance
7
PHP WEB CONCEPTS
Client/Server Communications
How to embed PHP into HTML
How to embed HTML into PHP
Cookies
Sessions
$_GET and $_POST
8
PHP DATABASE BASICS
Introduction to Relationship Databases
Keywords and Statements in SQL
Using PHP Functions with the MySQL Data Engine
9
DEVELOPING PHP APPS
Defining a Solution without Writing Code
Organizing a Concept Solution
Creating a Program Skeleton
Defining Error Checking Requirements
Introduction to Application Security
10
CHALLENGE PROJECT
Coding an Order Inquiry application
*********************************************************************
1
PHP SYNTAX REVIEW
Quotes
Comments
Special Characters
Data Types
Precedence and Definitions
Arrays
Operators
Conditionals and Loops
Functions
2
PHP LANGUAGE CONCEPTS
Including Files
Globals
References
File System Basics
3
CONFIGURING PHP
Setting up a Development Environment
php.ini Settings
4
REGULAR EXPRESSIONS
Characters and Symbols
RegEx Functions
Pattern Modifiers
5
PHP WEB CONCEPTS
Server Communication
HTTP Headers
Output Buffering
Browser Caching
Cookies
Sessions
Email
Forms
6
PHP OBJECT-ORIENTED PROGRAMMING
Classes
Static Context
Visibility (PPP)
Overriding Functions
Interfaces
Cloning
Namespaces
7
PHP DATABASE BASICS
Relational Databases
SQL and MySQL
PDO
Stored Procedures
Transactions
8
CRITIAL ASPECTS OF BUILDING PHP APPLICATIONS
Testing and Debugging
Troubleshooting Procedures: Development
phpDocumentor, phpDoc
Exceptions
Web Services
Performance Enhancements
Security and Validation