WEB SYSTEMS LESSON 6

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

PHP

is a server-side scripting language designed specifically for the

web.

2
New cards

PERSONAL HOME PAGE

WHAT IS THE TERM OF PHP IN THE PAST

3
New cards

PHP HYPERTEXT PREPROCESSOR

WHAT IS THE TERM OF PHP  NOW

4
New cards

$_SERVER

a super global variable that holds information

about the header, paths, and script location and other

information.

5
New cards

$_POST

a super global variable that collects data from the

form after submitting an HTML form.

6
New cards

$_GET

a super global variable that also collects data from the

form after submitting an HTML form. The data is passed

through the URL. It can also collect data from the URL.

7
New cards

$_FILES

a super global variable associates a double

dimension array keeps all information related to the uploaded

file.

8
New cards

$_SESSION

this super global variable associates with session

variables. This variable can be access during lifetime of a

session, which means that is value remain as long as the user is

using the system.

9
New cards

ARRAY

stores multiple values in one singe variable.

10
New cards

TWO-DIMENSIONAL ARRAY

is an arrays of arrays.

11
New cards

OPERATORS

are the mathematical, string, comparison, and logical

commands such as plus, minus, multiply and divide.

12
New cards

LOGICAL OPERATORS

are used to combine conditional statements.

13
New cards

INCLUDE_ONCE

includes and evaluates the specified

file during the execution of the script. This is a behavior similar to

the include statement, with the only difference being that if the

code from a file has already been included, it will not be included

again,