Exercises Control Structures | PHP for beginners | Learn PHP | PHP Programming | Learn PHP in 2020

preview_player
Показать описание
DOWNLOAD THE EXERCISES HERE:

Hi guys, welcome to my PHP course for beginners in 2020.

Do you want to learn PHP from scratch? In this course, I will be going through all the basics of PHP. I will show you how you could use PHP in HTML code, what variables and data types are, all the different type of operators, control structures, user functions and built in functions and what the super globals are and how you could use them.

After learning all the basics topics, I want to focus on databases using MySQL because we will be creating a login system after.

My official websites for questions or anything else:

If you are new to programming and you want to learn HTML5 and CSS3, I recommend you to follow the following course first:

Follow me on social media

Useful products for programming and recording that I use
Microphone I use:

My laptop stand:

External monitor:

Reading LED Desk lamp:

External Hard Drive to save projects:

Laptop I use:
Рекомендации по теме
Комментарии
Автор

thanks for the course Dary, in the exercise 4: you should divide machineFailure by machine age and than check for its condition.

abdullohsharipov
Автор

Congratulations for this series and thank you very much! The way that you solve fibonacci exercise is perfect and very fast!

FotiosTsioumas
Автор

I love the exercises! for the first exercise, we can also do away with $highest and $lowest and simply use : echo "the highest number is". $x; and also do the same for $y, right?

TheLinguists
Автор

what about 1900? 1900 is not a leap year.

$year = 1900;
if ($year % 4 == 0) {
if ($year % 400 == 0) {
echo "Leap year";
} elseif ($year % 100 != 0) {
echo "Leap year";
} else {
echo "Not Leap Year";
}
} else {
echo "Not Leap Year";
}

monsurrahmanriaz
visit shbcf.ru