Programming Assignment Unit 2
University of the People
CS 3305-01 Web Programming 2 - AY2024-T5
Dr. Shobhit Tewari (Instructor)
June 27, 2024
PART 1
1. The PHP code provided in part 1 of this assignment:
<?php
// simple PHP script to display the output strings listed in the
assignment
phpinfo();
// end of program;
?>
2. A screenshot of the program’s output:
PART 2
1. The PHP program to print out the strings listed in the assignment description:
<?php
// simple PHP script to display the output strings listed in
the assignment
echo "PHP is sorta Fun!\n";
echo "My Hello World! program\n";
echo "There is a lot more to learn about PHP!\n";
echo "My name is Nelson_\n";
// end of program;
?>
2. A screenshot displaying the output of the program: