Web Technology and PHP Concepts

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

1/15

flashcard set

Earn XP

Description and Tags

These flashcards cover essential vocabulary and definitions from the lecture notes on web technology and PHP concepts.

Last updated 2:24 PM on 4/15/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

16 Terms

1
New cards

Sequence

A table in the database that keeps track of the last assigned ID, useful for auto-generating unique identifiers.

2
New cards

nextId() function

A function used to get the next unique ID from a sequence.

3
New cards

Expiration Header

An HTTP response header that specifies how long a resource should be considered fresh by the browser.

4
New cards

Redirection Header

Uses the Location header in HTTP responses to redirect the client to a different URL.

5
New cards

301 Moved Permanently

A status code indicating permanent redirection.

6
New cards

302 Found

A status code indicating temporary redirection.

7
New cards

Serialization

The process of converting any PHP value into a byte stream representation for storage or transmission.

8
New cards

Deserialization

The process of converting a byte stream back into the original PHP value.

9
New cards

Database Specific Method

A connection method using functions that are made for a particular database.

10
New cards

Database Independent Method

A connection method that allows code to work with different databases using the same function.

11
New cards

pg_connect()

A function used to connect to a PostgreSQL database.

12
New cards

DB::connect()

A function from the PEAR DB library used for a database-independent connection.

13
New cards

pgfetchrow()

A function used to process results from a PostgreSQL database.

14
New cards

fetchRow()

A function used to process results with the PEAR DB library.

15
New cards

pgfreeresult()

A function used to free memory after finishing work with PostgreSQL.

16
New cards

free()

A function used to free memory in the database-independent method.