He describes it as an open source that is very useful for the IT department.
Scripted languages use text files that are open to editing, while a compiled language outputs an executable file that is immune to editing when the code is compiled.
A server side language is invisible to anyone attempting to inspect your code, while a client side language is visible to anyone inspecting it.
Eli sites Craigslist. The website is a great example due to the fact how widely used it is, and how easy it makes shopping for things online. The fact that something so complicated in nature can be built with PHP serves to portray the significance of the language.
He emphasizes how the language only returns the information that is required by the user, and nothing extra.
It is a notepad with extra features that are useful for programming and make your code structured. He recommends it due to the fact that it allows you to become a better programmer. Notepad++ does not give you compiler errors, and it is up to you to have perfect syntax.
All you need is a text editor and a web server that has a PHP interpreter installed.
He describes it as the punctuation and spelling for the code. It holds high significance due to the fact that even a tiny mistake, such as the misplacement of a period or semicolon can disrupt your code.
< Notepad++ ExampleYes, it does due to the fact that Linux is case sensitive.
They are opening quotation marks that allow code to be printed.
One technique that he mentioned was getting an error provided on the line before the line of error and after it.
Printing text in PHP is done without inserting a new line, while it is the opposite in HTML.
The PHP commands are not printed properly. In order to have them printed, is it necessary to change the file to .php.
You have your single line comments, which can be made by "//" or "#". Then you have your multi-line comment, which is made with "/**/".
It is a function that allows you to include files in your code. It is useful because it reduces the amount of coding you need to do and helps perform specific tasks, such as opening up a file, or editing it.
Eli discusses Strings, Arrays, and Integers.
The variables are case sensitive, and must have a $ sign before them.
In HTML, the br tag is visible and can be seen by the client, whereas the /n tag in PHP is invisible to the client, and is a line break which is only visible in the actual code.
He means that HTML pages are not subject to change due to the fact that they are static, while PHP pages can change based on user input.
An HTML textbox is where a user can enter code. The option box gives the user multiple options to select, while a radio button limits the user to only one of a predefined set of actions.