7: Different Data Types in PHP | PHP Tutorial | Learn PHP Programming | PHP for Beginners

preview_player
Показать описание
Different Data Types in PHP | PHP Tutorial | Learn PHP Programming | PHP for Beginners. In this PHP tutorial you will learn about some of the different data types we have in PHP.

It is important to know the difference between data types since PHP can be fairly sensitive to it depending on what we want it to do. Later when we get into databases and how to set them up, we also need to know about data types ahead of time.

➤ GET ACCESS TO MY LESSON MATERIAL HERE!

First of all, thank you for all the support you have given me!

I am really glad to have such an awesome community on my channel. It motivates me to continue creating and uploading content! So thank you!

I am now using Patreon to share improved and updated lesson material, and for a small fee you can access all the material. I have worked hard, and done my best to help you understand what I teach.

I hope you will find it helpful :)

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

There is another difference with single and double quote strings. Double quote strings you can include variable names directly in the string. You can't do that with the single quotes. for example:
$name = "Patrick";
echo "My name is $name";
//with double quotes the output will be My name is Patrick.
echo 'My name is $name';
//with single quotes the output will be My name is $name.

Noble_
Автор

As a complete beginner I'm watching videos one by one and am very impressed how detailed and clear all the explanations are.
I missed just one thing I had to look for in other Youtube videos - how to open .php file on my localhost browser.

baibaapkalna
Автор

One of the awesome videos again! you changed my mind about PHP and even i started to code with you :) I know it takes longer to learn all but with you, it seems simple to start! thank you

AiTool
Автор

I'm here! 😎 Great video, just posting a comment to show some support! Keep up the good work. 🤙

BornDoubleUp
Автор

Love this tuts so clean and direct to the point. Good job Dani.

renatzkigab
Автор

You might as well just use $names[1], without the quotes, since the number simply indicates the array's index.

remyreijven
Автор

"There is no difference between single and Double, the difference is..." XD

GameJam
Автор

one of the best lesson on youtube. Echo : Thank you :)

diagosmaster
Автор

The difference between single quotes and double quotes is that single quotes make your program marginally faster but you can't insert variables inside a single quote string.

headlikeahole
Автор

Always super easy and useful tutorial. Thanks 😍

s.sedighi
Автор

Another Great Video! I am going to watch a bunch of the PHP ones today! ♥

romanticscents
Автор

thank you so much you are the best teacher ever ^_^

wawy
Автор

Do strings accept C string styles with the backslashes for the boundaries and other other special chars.
e.g. \n for newline.

cagedtigersteve
Автор

You should start with telling people is that PHP is a loosely type language like python, that means you don't have to actually declare any variable datatype like java and C or C++, rather you can simply assigned values.

technovendor
Автор

why are some of the videos in this playlist private?

zainabedin
Автор

Hi, Your tutorial is very nice.. Can i know how many chapter's are left and do you think i can understand all the php stuff with your all videos for my php learning. Or can u suggest a name of the book where i can deeply study this ? thank u

gdttechreview
Автор

Should arrays have one data type or can they be mixed?

richm
Автор

Understand the concept of Variables will be easy if someone knows Algebra.

ck
Автор

I am trying to use the following commands to access my user class from within activate.php and I got the following errors.. unable to fetch non-objects... but I can access this from my update.php file using the following commands:

$user = new User();

echo $user->data()->username;

pianoLee-sxdx
Автор

Would it be possible to make a php video on setting up the contact form to send to your email?

jasonbischak