Elgin Community College
CIS 105, Introduction to Programming: PHPInstructor: Mark Pelczarski
Reading:PHP in 24 Hours, Chapter 1 (PHP)
1) Read the first two sections of the
HTML Tutorial.
2) Create an HTML page called "index.htm". This will be your home page.
You'll add links for each new assignment to this page through the rest of the
semester.
3) Test your page by opening it in a web browser from your computer.
4) Use Filezilla to transfer your page and images to the class web server.
Test it and make sure that the pages loads and displays correctly from the server
using:
http://cis2.elgin.edu/loginname
where "loginname" is your login name for the FTP/web server.
Reading:PHP in 24 Hours, Chapter 3 (A First Script)
Photofiltre image editorApache Mobile web server
Reading:PHP in 24 Hours, Chapter 4: The Building Blocks
Topics: variables, data types, arithmetic operators, order of operations
Using the querystring with $_GET.
Reading:PHP in 24 Hours, first part of Chapter 10: working with HTML forms.
Reading: PHP in 24 Hours, first part of Chapter 5: if statements,
Chapter 16: getdate(), mktime()
Topics: using conditional statements, if-elseif-else, getdate
Reading: PHP in 24 Hours, Chapter 4: Comparison Operators and Logical Operators
Topics: using compound conditions, more use of getdate, mktime
Reading: PHP in 24 Hours, Chapter 5: while loops
Topics: Writing programs with loops. Tables in HTML. Other ways to print.
Reading: PHP in 24 Hours, Chapter 5: do-while
loops and for loops.
Topics: More practice with loops. The rand function.
Reading: PHP in 24 Hours, Chapter 5.
Reading: PHP in 24 Hours, Chapter 6: functions
Topic: using functions to simplify your coding
Reading: PHP in 24 Hours, Chapter 15: graphics
Topic: using graphics functions to create images
Reading: PHP in 24 Hours, Chapter 11: files
Reading: PHP in 24 Hours, Chapter 11: files, Chapter 10: forms
Reading: PHP in 24 Hours, Chapter 8: Strings
Topics: string functions, strlen, strpos, stripos, substr, explode;
Reading: PHP in 24 Hours, Chapter 7: arrays