click below
click below
Normal Size Small Size show me how
Unit 1 Module 1
Intro to PHP Unit
| Question | Answer |
|---|---|
| Hypertext preprocessing file | PHP |
| process on the server | Server side scripts |
| processes on browser | Client side scripts |
| stored on a server do not change unless a programmer edits it | Static web pages |
| change according to processed results, interactions with the user, and outputs from a database | dynamic web pages |
| developed PHP | Rasmus Lerdorf |
| anyone can develop or modify | Open Source |
| doesn’t care if running Macs, Windows, or Linux | Cross platform |
| supports Linux, Apache, MySQL, Perl industry dominant web platforms. | LAMP compliant |
| a section on a Web page interpreted by the scripting engine | Code declaration block |
| a character or sequence of characters used to mark the beginning and end of a code segment | delimiter |
| The individual lines of code that make up a PHP script | statements |
| statements return text | echo |
| text enclosed either single or double quotation marks | listeral string |
| Describe what lines or sections of code do | Comments |