|
CSS Introduction |
CSS is a way to define how your site looks, while HTML's main goal is to define how your site is structured. Therefor we can safely assume that CSS is all about colors, positions, heights, widths and all other kind of things that make your site appealing...Read more >>
|
Arrays |
In our previous post we've seen that values can be stored in variables. But what if you want to group a set of variables into 1 variable. For this case we can use an array. You can see an array as something like you filesystem (Windows Explorer or ...Read more >>
|
Variables and constants |
This is the chapter where things are going to get exciting; PHP has 2 default placeholders in which it can store data these are the variable and the constant. The main difference between these 2 is that the value of a variable can be changed during code e...Read more >>
|
What is HTML and what is it used for? |
HTML is an abbreviation for HyperText Markup Language, so to translate this to human language you might say that HTML can be used to structure the content of a page. And the usual usage would be a webpage.You can start writing HTML from any text editor (u...Read more >>
|
Writing your first PHP code - Hello World |
Almost every coding course starts with it, the all-famous Hello World program. All it needs to do is display the message "Hello World" on the screen using the language you are starting out to learn. To get started you will need a text editor (not a word ...Read more >>
|
What is PHP and what do I need to use it? |
In this course we will explain what the PHP language is and for which purposes you can use it. We will also cover the easiest and fastest way to setup your PHP environment to get you started at creating your own scripts. After completing this course you s...Read more >>