PHP Reviewer for my bebe

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

1/48

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:18 PM on 4/10/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

49 Terms

1
New cards
Integrative Programming
The process of combining different systems or technologies to work together as one application
2
New cards
PHP (Hypertext Preprocessor)
A server-side scripting language used to create dynamic web pages
3
New cards
Frontend
The part of a website users see and interact with
4
New cards
Backend
The server-side logic that processes data and handles requests
5
New cards
Business Analyst (BA)
A professional who translates business needs into technical requirements
6
New cards
Quality Assurance (QA)
The process of testing software to ensure quality and functionality
7
New cards
8
New cards
echo
A PHP statement used to output text or variables to the browser
9
New cards
print
A PHP statement similar to echo but returns a value
10
New cards

Variables

Containers for storing data that start with a $
11
New cards

Data Types

String Integer Float Boolean Array Object and NULL
12
New cards

Comments

Notes in code using // # or /* */
13
New cards
Arithmetic Operators
Operators used for math operations like + - * / %
14
New cards
Assignment Operator (=)
Used to assign values to variables
15
New cards
Comparison Operators
Operators used to compare values like == === != < >
16
New cards
Logical Operators
Operators used to combine conditions like && || !
17
New cards
Increment/Decrement Operators
Operators that increase or decrease a value like ++ --
18
New cards
Control Structures
Statements that control the flow of a program
19
New cards
if Statement
Executes code if a condition is true
20
New cards
else Statement
Executes code if a condition is false
21
New cards
elseif Statement
Checks multiple conditions
22
New cards
switch Statement
Selects one of many code blocks based on a value
23
New cards
for Loop
Repeats code a specific number of times
24
New cards
while Loop
Repeats code while a condition is true
25
New cards
do while Loop
Executes code once then repeats while condition is true
26
New cards
foreach Loop
Loops through elements of an array
27
New cards
Function
A reusable block of code that performs a task
28
New cards
User-defined Function
A function created by the programmer
29
New cards
Built-in Functions
Predefined PHP functions like strlen() and count()
30
New cards
Array
A structure that stores multiple values in one variable
31
New cards
Indexed Array
An array with numeric indexes
32
New cards
Associative Array
An array with named keys
33
New cards
Multidimensional Array
An array that contains other arrays
34
New cards
$_GET
Collects data sent via URL
35
New cards
$_POST
Collects data sent securely via forms
36
New cards
$_REQUEST
Collects data from both GET and POST
37
New cards
Form Validation
Ensures user input is correct and safe
38
New cards
39
New cards
Session
Stores user data across multiple pages
40
New cards
Cookie
Stores small data on the user's browser
41
New cards
Database
A structured collection of data
42
New cards
MySQL
A database system commonly used with PHP
43
New cards
CRUD Operations
Create Read Update Delete operations in a database
44
New cards
SQL Injection
A vulnerability where malicious SQL is inserted
45
New cards
Client Server Model
A system where client requests and server responds
46
New cards
HTTP Request
A message sent from client to server
47
New cards
HTTP Response
A reply sent from server to client
48
New cards
Dynamic Website
A website that changes based on user input or data
49
New cards
Static Website
A website with fixed content