PHP
PHP Training 2003 Chapter 1 IntroductionMCIS/UA
PHP Chapter 1 Introduction Survey Have you ever written a web - - PowerPoint PPT Presentation
MCIS/UA PHP Training 2003 PHP Chapter 1 Introduction Survey Have you ever written a web application? Have you used any of the following languages? C PHP C++ Java Perl Have you ever written an object-oriented
MCIS/UA
program?
Survey
Agenda for the course
Presentation Library
Presentation Library
Presentation Library
Presentation Library
Presentation Library
Presentation Library
Authentication
Authentication
check_authenticated_user( array('application_name' => $cfg_appname, 'session_name' => $cfg_sessionname, 'add_nav_func' => 'add_nav', 'xslt_name' => $cfg_xslt, 'was_enabled' => 1, ));Why change?
What is a Web Application?
What is PHP?
What is PHP?
What can PHP do?
What can PHP do?
What can PHP do?
Web Development Application Usage
Cold Fusion PHP WebObjects JSP Perl ASP 10,478,951 18,748,190 1,503,133 2,543,689 2,835,762 29,371,084First Program
<html> <head> <title>First Program</title> </head> <body> <p> <?php print “My first PHP program.”; ?> </p> </body> </html>First Program
First Program
<html> <head> <title>First Program</title> </head> <body> <p> <?php print “My first PHP program.”; ?> </p> </body> </html>First Program
<html> <head> <title>First Program</title> </head> <body> <p> <?php print “My first PHP program.”; ?> </p> </body> </html>First Program
<html> <head> <title>First Program</title> </head> <body> <p> <?php print $_SERVER[”HTTP_USER_AGENT”]; ?> </p> </body> </html>First Program
<html> <head> <title>First Program</title> </head> <body> <p> <?php phpinfo(); ?> </p> </body> </html>Homework #1
Rewrite your first program using only PHP <?phpReferences
http://www.php.net/ http://www.users.muohio.edu/covertka/php/ http://webdev.admin.muohio.edu/phpapps/ http://www.google.com/