PHP Flashcards

1
Q

What is PHP?

A

PHP stands for Hypertext Preprocessor. Originally Personal Home Page. It is a server-side scripting language.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the difference between server side and client side?

A

Web development terms that describe where the application code runs.
Ex A website runs CSS, HTML, and JavaScript are interpreted by the browser on the client side.
Server side means everything happens on the server instead of the client. Nearly everything used to run on the server, but it created latency. So more code is now run on the client side.
Client side scripting means running scripts like JavaScript on the client device within a browser.
Server side scripts run via the server instead of the client. Server side scripts can be written in a variety of languages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Symfony?

A

A PHP web application framework that follow the model-view-controller architectural pattern.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is WordPress?

A

WordPress is a content management system written in PHP.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly