TSA1-(Applications Development and Emerging Technologies)
TSA1-(Applications Development and Emerging Technologies)
TECHNICAL-SUMMATIVE ASSESSMENT
1
PHP OUTPUT, VARIABLE FAMILIARIZATION, OPERATORS
AND CONTROL STRUCTURE
Name Role
Members (if Group):
Section:
Professor:
I. PROGRAM OUTCOME/S (PO) ADDRESSED BY THE LABORATORY EXERCISE
● Design, implement and evaluate computer-based systems or applications to meet desired needs and
requirements.
● Understand and apply best practices and standards in the development of website.
1. The student will create a student registration form using HTML and CSS with the
integration of PHP Scripts please refer to the attached image for the example.
a. All user entries from the student registration form will be converted in variables
b. In the output, they need to call for the declared variables and do some string
formats like name cases and numbers
<br>
<fieldset style="background:#c0bec3;">
<?php
echo "
<form action=TSA1_Protacio.php method=post>
<table >
<tr>
<td>
<i>For School Use</i><b>-Permision to Register:</b> <input
type=text name=Data1>
</td>
<td>
<b>Date:</b> <input type=text name=Date size=25>
</td>
<td>
<input type=checkbox name=ESL> ESL
</td>
<td>
<input type=checkbox name=SPED> SPED
</td>
<td>
<input type=checkbox name=IPRC> IPRC
<html>
<table align="center" border="2px" style="width:50%; height:50%; text-
align:center; font-size:50">
<?php
for($i=1;$i<=10;$i++){
1. What is a variable? In PHP, a variable acts like a labeled storage box in your program. You create it with a
name starting with a dollar sign ($), then assign it a value like a number, text, or even another variable. This
value can change later on.
2. What are the rules in creating a variable? Using a Dollar Sign, Start with a Letter or Underscore, It can
contain alphanumeric and underscore characters. It is also case-sensitive.
VIII. REFERENCES
1. https://www.w3schools.com/php/func_string_echo.asp
2. https://www.w3schools.com/css/
3. https://www.w3schools.com/html/
4. https://www.w3schools.com/php/php_variables.asp
5. https://www.w3resource.com/php/operators/arithmetic-operators.php
6. https://www.tutorialspoint.com/php/php_arithmatic_operators_examples.htm
7. https://www.w3schools.com/php/php_if_else.asp
8. https://www.w3schools.com/php/php_switch.asp
9. https://www.w3schools.com/php/php_looping.asp
10. https://www.w3schools.com/php/php_looping_while.asp
11. https://www.w3schools.com/php/php_looping_do_while.asp
12. https://www.w3schools.com/php/php_looping_for.asp
13. https://www.w3schools.com/php/php_looping_foreach.asp
14. https://www.w3schools.com/php/php_looping_break.asp