PHP Tutorial (& MySQL) #6 - Numbers

preview_player
Показать описание
----------------------------------------

🐱‍💻 🐱‍💻 Course Links:

🤑🤑 Donate


🎓🎓 Find me on Udemy

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

Re-uploaded to correct a small syntax error (use ** for powers instead of ^). Thanks to those who pointed out the mistake :).

NetNinja
Автор

Like you, because you're the honest man, I wish I have money to donate but as far as I'm 17 years old I can't, but I'm enjoying your videos and always appreciate your art.

Arman-cntf
Автор

4:47 That's because the variable gets returned first before being incremented. To increment first then return, do ++$radius

TheGryphon
Автор

With BIDMAS, division and multiplication have the same priority, so typically you work left to right if both occur, so the multiplication occurs before the division. It didn't matter in that case, but if you had, say, 8 / 2(3 + 3), you'd do (8 / 2) * (3 + 3)

kplays_
Автор

instead of omitting that part in the video you have corrected yourself? You are a true ninja my friend

MustafaBirsoz
Автор

I really try to find other channels, but you explain so simple and fun! Hahaha Fantastic, thank you Shaun, hugs from Brazil!

eduardogalvao
Автор

I'm Also Lover of Programming Languages and I didn't found Any honest Channel Like you Keep up Bro { big Hug From Morocco }

hotsmissed
Автор

Hello, a little bit of correction, it doesn't matter which one comes first, talking about the BIDMAS because division and multiplication have the same priority, so you have to work from the left
if both appears like 15/3*4. The answer is 20 because you work from the left to the right. 15 divided by 3 is 5 and 5 will multiply the 4 and will give you twenty. so basically you have to work from the left to right if you see multiplication and division.

akinie
Автор

brother i really love your lectures so far

gagsterhub
Автор

Hi, in min 5:06 you have that echo $radius++; echo $radius; //generates 2526. But Why if the ++ function is ontop, shouldn't it echo 2625?

FedericoMusic_
Автор

i have seen about six videos. so usefull, thank you very much

TPNChannel
Автор

learning js before php is a bonus for the developer

ahiabuikeexcel
Автор

In the states we call is PEMDAS... Parentheses, Exponents, Multiplication, Division, Addition, Subtraction.

Urbanvagabondtv
Автор

Shaun very nice Tutorial, Thank you Shaun!

atishmhatre
Автор

Another question please. If you put the increment or decrement below it does nothing. Why?

FedericoMusic_
Автор

Multiplication comes first. PEMDAS. Parenthesis, exponents, multiplication, division, addition, subtraction.

nick_jacob
Автор

When youre typing the code how does the list of options appear?

BFMMFB
Автор

I hate that you have to prefix a variable with $ every time you want to use it after its declared.

yamacode
Автор

That pi() looks like it takes argument, what arguments does it take?

DSProductions
Автор

One small mistake never mind. It is called BODMAS, not BIDMAS.
Btw nice video helpful enough :)

chandancodes