intermediate web programming

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/23

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:12 AM on 9/7/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

24 Terms

1
New cards

PHP

A widely used, open-source scripting language suited for web development that is executed on the server.

2
New cards

PHP Interpreter

A special program that automatically creates parts of HTML from PHP insertions within the HTML code.

3
New cards

Server-Side Development

The execution of scripts on a web server (like Apache or IIS) where the HTTP server calls the PHP process to execute a request and return output.

4
New cards

Static Web Page

A web page with fixed content that displays the same information to every user.

5
New cards

Dynamic Web Page

A web page whose content is generated or updated dynamically on the server side before being sent to the client.

6
New cards

PHP Scripting Block

A sequence of PHP statements enclosed between an opening tag ().

7
New cards

echo

A PHP statement used to output one or more strings; can be used with or without parentheses.

8
New cards

print

A PHP statement used to output a string and returns 1; can be used with or without parentheses.

9
New cards

PHP Tag

A set of opening () markers that define a block of PHP code.

10
New cards

PHP Comment

Lines in a PHP script that are ignored by the engine, used for documentation, notes, or debugging.

11
New cards

Single-line Comment

A comment marked by // or

12
New cards

that lasts until the end of the line.

13
New cards

Multiple-line Comment

A comment block enclosed between /* and */ that spans multiple lines.

14
New cards

Case Sensitivity in PHP

The behavior where PHP variables are case-sensitive, while keywords, function names, class names, and control structures are not case-sensitive.

15
New cards

Variable

A named part of a computer's memory used to store a value, represented in PHP by a dollar sign ($) followed by the variable name.

16
New cards

Uninitialized Variable

A variable that has not been assigned a value; defaults to false (booleans), zero (integers/floats), empty string (strings), or empty array (arrays).

17
New cards

Boolean

A basic data type in PHP that expresses a truth value, which can be either true or false (case-insensitive).

18
New cards

Integer

A non-decimal whole number between -2,147,483,648 and 2,147,483,647.

19
New cards

Floating-point Number (Float)

A data type representing a number with a decimal point or a number in exponential form.

20
New cards

String

A data type representing a series of characters enclosed within single or double quotes.

21
New cards

Constant

An identifier for a simple value that cannot change during script execution, defined using the define() function and uppercase by convention.

22
New cards

Function

A reusable block of statements in a program that executes when called.

23
New cards

Function Arguments

Variables passed into a function inside parentheses, used to pass information into the function body.

24
New cards