Download presentation
Presentation is loading. Please wait.
Published byErica Newman Modified over 9 years ago
1
Chapter 2 Programming with PHP Part 3
2
handle_form.php Script 2.5 on page 56 http://csweb.hh.nku.edu/csc301/frank/ch02/f orm.html http://csweb.hh.nku.edu/csc301/frank/ch02/f orm.html ch02\handle_form.php
3
Superglobal Arrays $_GET, $_POST, $_REQUEST $_SERVER $_ENV $_COOKIE, $_SESSION
4
Indexed arrays $student[0] = “Black”; $student[1] = “Brown”; $student[2] = “Green”; $student[3] = “White”;
5
Indexed arrays $student[] = “Black”; $student[] = “Brown”; $student[] = “Green”; $student[] = “White”;
6
Associative Arrays $states = array ( ‘IN’ => ‘Indiana’, ‘KY’ => ‘Kentucky’, ‘OH’ => ‘Ohio’ ) echo $states[‘KY’];
7
calendar.php Script 2.6 on page 59 http://csweb.hh.nku.edu/csc301/frank/ch02/s cript_02_06/calendar.php http://csweb.hh.nku.edu/csc301/frank/ch02/s cript_02_06/calendar.php ch02\script_02_06\calendar.php
8
multi.php Script 2.7 on pages 62-63 http://csweb.hh.nku.edu/csc301/frank/ch02/ multi.php http://csweb.hh.nku.edu/csc301/frank/ch02/ multi.php ch02\multi.php
9
sorting.php Script 2.7 on pages 66-67 http://csweb.hh.nku.edu/csc301/frank/ch02/s orting.php http://csweb.hh.nku.edu/csc301/frank/ch02/s orting.php ch02\sorting.php
10
calendar.php Script 2.9 on pages 71-72 http://csweb.hh.nku.edu/csc301/frank/ch02/c alendar.php http://csweb.hh.nku.edu/csc301/frank/ch02/c alendar.php ch02\calendar.php
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.