0% found this document useful (0 votes)
3 views4 pages

Index PHP

Uploaded by

Nel Matrix
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views4 pages

Index PHP

Uploaded by

Nel Matrix
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

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:

You might also like