Basic PHP Syntax - PHP 8 Tutorial

  Рет қаралды 165,782

Program With Gio

Program With Gio

Күн бұрын

Let's write some PHP & go over the basic syntax. After this video, you will be able to concatenate & print text to the browser, declare & use variables, use variables within strings & embed PHP within HTML. In all of my videos, I cover a lot of small details that in my opinion are very important so I recommend watching the video fully.
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL
👍 Smash the like button
🤝 Subscribe to the channel & turn the notifications on
💬 Post comments, any feedback is greatly appreciated
⭐ Become a Patreon: / programwithgio
THANK YOU!
LESSON 1.2
Course Outline - github.com/ggelashvili/learnp...
Course Playlist - • Learn PHP The Right Wa...
CHAPTERS
00:00 Intro
00:41 Basic Syntax
01:58 Hello World
03:22 Run PHP In Terminal
03:50 Print vs Echo
05:18 Escaping Quotes
05:45 Variables
06:26 $this variable
06:48 Assigning by Value vs Reference
07:45 Variables Within Text
08:52 PHP In HTML
10:45 Comments

Пікірлер: 161
@lynic-0091
@lynic-0091 2 жыл бұрын
This will help out beginners immensely, I wish I had these basics when I just started, would've helped me out a lot!
@user-zh2oz9fe4m
@user-zh2oz9fe4m 9 ай бұрын
Learning PHP language is very pleasant thanks to this channel.
@ProgramWithGio
@ProgramWithGio 9 ай бұрын
Glad to hear that, thank you
@alexsavastru8125
@alexsavastru8125 Жыл бұрын
Well, considering I'm currently in an internship and trying to catch up to my mentors, this series is an absolute gold mine. One of my mentors recommended it and I couldn't be more satisfied by it. Thank you for the invaluable work you put into this!
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you & send my thanks to your mentors, really appreciate it 💙
@keshiiiiii
@keshiiiiii Жыл бұрын
Same 🤭
@user-ei8yw1nd5n
@user-ei8yw1nd5n Жыл бұрын
I highly recommend this video on the Basics of PHP Syntax to total beginners and anyone who lacks a clear starting point, as it is truly helpful.
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you 💙
@michaligocki35
@michaligocki35 3 жыл бұрын
lots of great stuff, very detailed. you're the best PHP teacher I've ever encountered.
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
Thank you 🙌
@SynMlyn
@SynMlyn 4 ай бұрын
Huge thanks to Gio for the invaluable knowledge shared in these tutorials!
@ProgramWithGio
@ProgramWithGio 3 ай бұрын
You're welcome
@cristianvulpe1408
@cristianvulpe1408 3 жыл бұрын
That's awesome, I really love your teaching style. Keep up the good work.
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
Thank you 😊
@rustlejack9542
@rustlejack9542 2 жыл бұрын
Hey Gio! You deserve Millions of Subscribers. Keep it up and bring more courses like this 'cause I'm really enjoying this course.
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Thank you, I'm glad that you like my tutorials 🙌
@kewl-asian
@kewl-asian Жыл бұрын
These are legit the best coding practices I have ever learned, and you just tackled printing and variables. I'm commited to finish this tutorial :)
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Glad you like it, welcome aboard 🙌🙌
@a7medalyousofi
@a7medalyousofi 2 жыл бұрын
The best explanation way I have ever attended on KZbin, a lot of information that I did not find in another youtube channel, I really like your way of explanation. Thank you, Gio.
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Thank you 🙏
@jonkoenig2478
@jonkoenig2478 3 жыл бұрын
Good to see new content coming out, PHP is still my favorite language. Just feels good to me, not sure why!
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
PHP is great and it is my favorite language as well. Not only because it pays the bills but also because of the community & its huge ecosystem. PHP is constantly being improved & updated & is just great to work with.
@davidarnold1881
@davidarnold1881 Жыл бұрын
Very Clear. I liked your introduction and how detailed you are. Starting right at the beginning is frustrating but absolutely necessary as you say
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Glad you liked it, thank you 💙
@gazianis7572
@gazianis7572 2 жыл бұрын
php file: If you want your file to be interpreted as php then your file must end with that php and not with that html. php files can also have html, CSS, JavaScript in them. php tag: php opening and closing tag is and php interpreter interpreted the code between opening and closing tag. But if your file entirely contain 100 percent php code then you do not need the closing tag and that is to make sure that no accidental whitespace or new lines are added after the php closing tag which could mess up your website. Semicolon: php closing tag will automatically assume the semicolon on the last line. So basically you do not need semicolon the Last line of php statement. This is useful when you are embedding php with html and it's just a single line in those case s you do not need the semicolon but if you have multiple lines though it's a good idea to stay consistent and just use the semicolon. php code execute: You could execute your php script within your terminal. If you open xampp control panel and click on shell on here this will bring up the terminal. We need to cd into our project directory which is htdocs program with project name and then you could run php files using the php command and that will give you the output. So you could basically execute your php code in command line if you want. You could also use print to print something which essentially is the same thing as echo. Difference of echo and print: Print has a return value of 1 for that reason here I give an example like I do echo and then print that will print out hello world and then append one at the end because this expression itself return 1 this means that print could be used within expressions while echo can not for example if we did this the other way print echo "hello world" and this would not work and we would get the syntax error. Echo could print multiple values while print can not. for example echo "abc", "xyz";//works print "abc", "xyz";//does not works Echo is marginally faster than print. variable Vraible declared with dollar sign($).First character start with a-zA-Z_ and then other character from a-zA-Z_0-9.No space and no special character are allowed. This is a object so you do not assign $this. Variables in php are by default assign by value .Let me show you what I mean so if we have a variable called x which equals to 1and then we have a variable y which equals o x and then we change the value of x to 3 and then we print y what will be printed is 1 and not 3 that is because variables are assigned by value.On the other handif you actually wanted y to change whatever x cahnges then we need to assign variables by reference instead of value. Assign a variable by reference,you need to add ampersand righ here so now y is equal to reference variable x so anytime x cahnges the y will also change and now y is equal to 3. Comments: There are two types of single line comments that are // your comments and #your comments. Multiline comments is /* comment here */. Nested multiple comments are not allowed.
@dancarter6044
@dancarter6044 2 жыл бұрын
wow
@jibinjoseph5228
@jibinjoseph5228 2 жыл бұрын
Very clear explanation you deserve more audience. You earned a new subscriber. Keep up the good work 😍😍
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Thank you so much 🙏
@MehdiEm
@MehdiEm 2 жыл бұрын
Wow ... the amount of information you have is insane!!! It shows that you really know what you are talking about. Thanks for this valuable series! :D
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Thank you. I spend a lot of time preparing videos, I don't know everything by heart :)
@victorpinasarnault9135
@victorpinasarnault9135 3 жыл бұрын
Real Nice! Liked and subscribed.
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
Thank you 🙌
@aow6813
@aow6813 Жыл бұрын
I like how you speak slowly and explain everything . I will complete the full course .. Keep up the good work
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you 🙌
@snakemanluffy7645
@snakemanluffy7645 3 жыл бұрын
Thanks. I didn't know about the reference. Looking forward to finish this amazing course :P
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
You're welcome. Glad it was useful 🙌
@knowlife4486
@knowlife4486 Жыл бұрын
Thank you for your great contribution !!
@ProgramWithGio
@ProgramWithGio Жыл бұрын
🙌🙌
@ahmadyounis6814
@ahmadyounis6814 6 ай бұрын
Perfect explanation 👌
@ProgramWithGio
@ProgramWithGio 6 ай бұрын
Glad you liked it
@FaresKhalid
@FaresKhalid 2 жыл бұрын
very powerful tutorial :)
@mahmoudshabakat2974
@mahmoudshabakat2974 2 жыл бұрын
thank you very much for this excellent course.
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
You're welcome 🙌
@cryptoknight7256
@cryptoknight7256 Жыл бұрын
Excellent! Thanks, Gio!
@ProgramWithGio
@ProgramWithGio Жыл бұрын
You're welcome
@mazadesigndev295
@mazadesigndev295 3 жыл бұрын
Once again, very clear and nicely explained. Plus, I enjoyed learning the concepts that are not very widely taught in other resources. keep it up! :)
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
Thank you 🙏
@migueldemaria3830
@migueldemaria3830 3 жыл бұрын
learning lots of cool little details here!
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
Glad to hear that 👍
@tvnisa6035
@tvnisa6035 Жыл бұрын
very good, i'm wathching from Brazil, thank you.....congratulations for your channel!
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you & greetings to you my friend, love Brazil (my favorite national football team)
@AhmedShehtaShe7ta
@AhmedShehtaShe7ta 3 жыл бұрын
Keep up the good work. ❤
@ProgramWithGio
@ProgramWithGio 3 жыл бұрын
Thank you, I'll try my best 👍
@SoniaChavez-je7hq
@SoniaChavez-je7hq 3 ай бұрын
Very helpful tutorial ❤
@ProgramWithGio
@ProgramWithGio 3 ай бұрын
💙💙
@SarahPoulin
@SarahPoulin Жыл бұрын
This is the third tutorial I'm on, and I had to quit the other two (which are supposedly for beginners), because of deprecated code and no fix for the problems. One thing I wondered was why there was no php closing tag used. Nobody ever explained it. You are the FIRST to actually explain why! Thank you!!!
@ProgramWithGio
@ProgramWithGio Жыл бұрын
It's one of the reasons why I made this course and put in so much effort. Glad you like it and find it useful, feel free to ask any questions as you are going through the course 🙌
@leonardohirsch9086
@leonardohirsch9086 Жыл бұрын
great tutorial. Thanks
@ProgramWithGio
@ProgramWithGio Жыл бұрын
You're welcome
@khonsmail7675
@khonsmail7675 Жыл бұрын
TNice tutorials comnt from you is legendary. Uncomplicated like your video!!!
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Glad you like them, thank you 💙
@k.bharathkempula6896
@k.bharathkempula6896 Жыл бұрын
very clear explanation sir
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you 🙌
@user-vq7ry8hr6d
@user-vq7ry8hr6d 5 ай бұрын
Thank you for this wonderful and very knowledgeable 🙏 PHP learning series.
@ProgramWithGio
@ProgramWithGio 5 ай бұрын
You're very welcome
@Islam.our.religion
@Islam.our.religion Жыл бұрын
Thx for the great video
@ProgramWithGio
@ProgramWithGio Жыл бұрын
You're welcome
@GeneralStaal
@GeneralStaal 6 ай бұрын
I have been developing in PHP for some years . . . and didn't know about ONLY have an opening PHP tag, for files that ONLY contain PHP. A great tutorial.
@ProgramWithGio
@ProgramWithGio 6 ай бұрын
Thank you 💙
@ballpen9157
@ballpen9157 Жыл бұрын
great. thank you.
@ProgramWithGio
@ProgramWithGio Жыл бұрын
You're welcome
@tahamohamed2161
@tahamohamed2161 9 ай бұрын
U are the best ❤
@ProgramWithGio
@ProgramWithGio 9 ай бұрын
Thank you
@stefanbirsan3320
@stefanbirsan3320 2 жыл бұрын
great!
@bibekbasnet4698
@bibekbasnet4698 Жыл бұрын
i have started learning it i will come back when i finish it! 😄
@ProgramWithGio
@ProgramWithGio Жыл бұрын
🤞🤞
@ahmedyasser571
@ahmedyasser571 2 ай бұрын
thank you so much
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
you're welcome
@JacS975
@JacS975 11 ай бұрын
thank you again
@ProgramWithGio
@ProgramWithGio 11 ай бұрын
Always welcome
@faisalasif5986
@faisalasif5986 2 жыл бұрын
Great Master
@ProgramWithGio
@ProgramWithGio Жыл бұрын
💙💙
@Cantin91
@Cantin91 Жыл бұрын
Awesome :)
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you. Cheers
@PrzyjacielKamil
@PrzyjacielKamil 2 жыл бұрын
Good for beginners.
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Glad you think so
@gomeypublic
@gomeypublic Жыл бұрын
finally i found a good PHP course.
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Happy to hear 🙌
@ilya_123__
@ilya_123__ 8 ай бұрын
thank you
@ProgramWithGio
@ProgramWithGio 8 ай бұрын
You're welcome
@sujanmiya4514
@sujanmiya4514 Жыл бұрын
Realy cool
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Thank you
@alnahian2003
@alnahian2003 Жыл бұрын
Wow! I just learned that in PHP variables are assigned by value by default and not by reference 😮 Already seeing some progress, can't wait for more 🎉
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Happy to hear, keep going 🙌
@zonegamma8197
@zonegamma8197 Ай бұрын
thanks a lot
@ProgramWithGio
@ProgramWithGio Ай бұрын
You are welcome
@vladimirputindreadlockrast812
@vladimirputindreadlockrast812 11 ай бұрын
You can also use a period to concatenate a string: $s = "Hello " . "World";
@ProgramWithGio
@ProgramWithGio 11 ай бұрын
Yup I show that in the video as well.
@user-Des3
@user-Des3 3 ай бұрын
Hi, there. I am absolutely new in this. I have already installed VSC, is it ok for php? You didn't recommended in the video...
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
It's fine, I don't use VSC, I use phpstorm but a lot of devs use vscode & I think its fine. It just may not have all the features phpstorm has.
@user-vk4qk7db9e
@user-vk4qk7db9e 5 ай бұрын
can i use vs code as IDE while following ur tutorial? beginner here thank you
@ProgramWithGio
@ProgramWithGio 5 ай бұрын
You can use any code editor you like
@susantc5288
@susantc5288 2 жыл бұрын
Is there a reference that gives us a list of course in order of the video names?
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Yes, the link to the repo is in the description. It contains outline of all videos with title and link
@954roof
@954roof 9 ай бұрын
Working on a laravel project and struggling with syntax hope this will help
@ProgramWithGio
@ProgramWithGio 9 ай бұрын
Hope too
@rosarioveneruso9928
@rosarioveneruso9928 Жыл бұрын
Hi Gio, one thing about the semicolon, I saw in following videos that when you declare function or classes you don't use the semicolon at the end, why that? Isn't it an end of a statement?Indeed if I put it in those occasions it seems that the script doesn't work, I'm quite confused.
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Hey, you don't need semicolon at the end of }. Can you point me to timestamp on the video on what part you are referring to? You don't need semicolon on single line expressions like this
@rosarioveneruso9928
@rosarioveneruso9928 Жыл бұрын
@@ProgramWithGio I didn't mean u put semicolon at the end of }, I was askin' why is that in general. "Hey, you don't need semicolon at the end of }" --->why is that? I can't understand where to put semicolons exactly. I meant that in following videos of yours there were (indeed) no semicolon at the end of } but I cannot understand why if we're saying that we must put them after every statement. There were something like this(but also seeing other codes):
@ProgramWithGio
@ProgramWithGio Жыл бұрын
@@rosarioveneruso9928 } on its own is not a statement so yea you don't put a semicolon there. It's just a closing bracket. If that were case then you would need to put semicolon at the end of each line including the if() {. P.S. I don't think the above code is from my lesson.
@rosarioveneruso9928
@rosarioveneruso9928 Жыл бұрын
@@ProgramWithGio It isn't , i was just an example(i wrote "somethin' like"), the point was that it wasn't clear to me when/where put semicolon. "} on its own is not a statement so yea you don't put a semicolon there" I meant the two brackets with what is inside of it, don't we count that as a statement? The block inside of it is not a/a series of instruction/s?
@ProgramWithGio
@ProgramWithGio Жыл бұрын
@@rosarioveneruso9928 I would watch lesson about expressions in this series, it might help. You just don't put semicolons at the end of brackets, idk if there is a list of things that you can't put semicolons on but that's one of them. Whatever is contained within control block (within brackets) at the end of those lines you put semicolon, they are usually expressions.
@olisaisama7083
@olisaisama7083 9 ай бұрын
Hi Gio. Nice videos. I created php functions to be used to generate dynamic html but i feel is the wrong practice. I watched your videos on slim and twig but couldnt wrap my head around so im using php template for the view rendering. Is there a way i can use slim php with React (acting as the dynamically generated html for the views) where if render view eg home.php with some fetched db data the React takes the $data which I'd json encode in the home.php view and pass it as a prop to a React component to dynamic generate the views. In short how can i merge slim php with react
@ProgramWithGio
@ProgramWithGio 9 ай бұрын
You can use PHP with React but you would need to use PHP as an API layer and pass data to your react via ajax calls. Its a bit complicated to set it up but its certainly possible. You can look into Inertia.js for Laravel which allows you to pass down to react components directly from controllers similar to how you would pass it down to regular views
@olisaisama7083
@olisaisama7083 9 ай бұрын
@@ProgramWithGio this is great! Thank you, mate.
@chriscentproductions6905
@chriscentproductions6905 8 ай бұрын
How did you make the browser auto update the output of the code?
@ProgramWithGio
@ProgramWithGio 8 ай бұрын
Power of editing
@emmanuelterdoomzer6309
@emmanuelterdoomzer6309 8 ай бұрын
Can you please confirm that the link to your patreon account works? I hit the url but it seems to be broken or something.
@ProgramWithGio
@ProgramWithGio 8 ай бұрын
Yes works fine on my end, just tested it as well
@llamallama7
@llamallama7 6 ай бұрын
Many jobs opportunities using PHP from where I am located. I was learning Node.js and I will still practice it but I feel like I should learn PHP and not pay attention to those who say that PHP is dead.
@ProgramWithGio
@ProgramWithGio 6 ай бұрын
Thats a good strategy, you should go based on demand & if in your location PHP is on demand then it makes sense to learn PHP
@user-oq2cx2lv8o
@user-oq2cx2lv8o 9 ай бұрын
Hello ,pleasehow can i fix the port problem definitly in xampp,cause all the time i open xampp i have to change port number
@ProgramWithGio
@ProgramWithGio 9 ай бұрын
Maybe something else is running on that port that is holding it up?
@fractal4157
@fractal4157 2 жыл бұрын
How to make errors to appear in a browser? I've edited php.ini file and set error_reporting = E_ALL and display_error = On, but nothing changed. The program is still crashes silently.
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Did you restart Apache?
@chibuikeemenike6377
@chibuikeemenike6377 Жыл бұрын
pls which text editor is suitable to code php
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Phpstorm in my opinion is the best
@augischadiegils.5109
@augischadiegils.5109 2 жыл бұрын
❤️❤️❤️❤️❤️
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
💙💙💙
@Neceros
@Neceros Жыл бұрын
holy shit you went with php storm. Great software but expensive as heck and probably not something a new user would invest in.
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Sure, you can use whatever IDE you want, phpstorm is not a requirement. It's just what I use and am comfortable with
@arthurmunhoz7095
@arthurmunhoz7095 Жыл бұрын
Joel Karr to be fair I learnt loads
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Was this directed to me or someone else? Either way, thank you 💙
@lisalin9375
@lisalin9375 Жыл бұрын
Hi I am a completely beginner for PHP, but the tutorial is really too fast for me :( a bit frustrated
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Hello. You can slow it down by clicking on the ⚙️ icon and set playback speed to 0.75x or 0.5x. I apologize if it's too fast, I've made some editing mistakes where I cut out all empty spaces.
@AlexeySuzdalenko
@AlexeySuzdalenko 5 ай бұрын
i am study inglish language in this video
@ProgramWithGio
@ProgramWithGio 5 ай бұрын
That's awesome
@almoemason
@almoemason 9 ай бұрын
I was a bit confused at first until I realized that you do not know the meaning of the symbol quotes in English. ' = apostrophe, " = quotes and "" = double quotes.
@ProgramWithGio
@ProgramWithGio 9 ай бұрын
Thanks, English isn't my first language, but in PHP we usually call it all quotes (single, double) and saying apostrophe usually confuses people more since most know it as "quotes" and either single or double quote works in most cases.
@CharlesPlaysIQ
@CharlesPlaysIQ 10 ай бұрын
wcan i get like to the creator of this video,im learning php anow, im am lat?
@ProgramWithGio
@ProgramWithGio 10 ай бұрын
I'm the creator of the video, what's up?
@teacupentertaining6073
@teacupentertaining6073 Жыл бұрын
Srry boys but echo ("Hello {$variable}") is deprecated since php 8 so if you are searching why vscode gives u a warning in this line of code now you know why
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Nope, that is not deprecated in PHP 8 and is perfectly valid. Did you define the variable? What error are you getting? Maybe you are referring to PHP 8.2 which deprecates this: "${variable}" but "{$variable}" should still work
@teacupentertaining6073
@teacupentertaining6073 Жыл бұрын
@@ProgramWithGio works but vscode says it's deprecated since php 8
@ProgramWithGio
@ProgramWithGio Жыл бұрын
@@teacupentertaining6073 I don't see it in the php documentation as being deprecated. You can see here what's deprecated in 8.2: www.php.net/manual/en/migration82.deprecated.php
@BlackCrypt
@BlackCrypt Жыл бұрын
Php8?
@ProgramWithGio
@ProgramWithGio Жыл бұрын
Yup, we upgrade to PHP 8, & to 8.1 in following videos. At the time of recording of this video 8.0 wasn't released yet.
@user-hp4bx3gn6k
@user-hp4bx3gn6k 2 жыл бұрын
ქართველი ხარ ხო ? დ
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
კი 🙂
@user-hp4bx3gn6k
@user-hp4bx3gn6k 2 жыл бұрын
@@ProgramWithGio აქცენტზე გეტყობა დდ პ.ს. მშვენიერი კაი საქმეა, ისე ქართულადაც რო დადო გამოგვადგება ბევრ დამწყებს
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
@@user-hp4bx3gn6k მადლობა. ქართულად გამიჭირდება რადგან ქართულად არ მაქვს ნასწავლი მე თვითონ 🙂.
@moofymoo
@moofymoo 2 сағат бұрын
echo print('!!');
@thechoosen4240
@thechoosen4240 7 ай бұрын
Good job bro, JESUS IS COMING BACK VERY SOON; WATCH AND PREPARE
@ProgramWithGio
@ProgramWithGio 7 ай бұрын
Ok, thanks
@paulhughes8907
@paulhughes8907 8 ай бұрын
hard to follow examples, your screen is too small
@ProgramWithGio
@ProgramWithGio 8 ай бұрын
Yea, I realized that a bit late. In section 3 it gets better since I zoom in a bit and also I zoom in on parts that are important.
@younickbongo7870
@younickbongo7870 2 жыл бұрын
you know what you don't deserve???? a dislike. nice video.
@ProgramWithGio
@ProgramWithGio 2 жыл бұрын
Thank you 🙏
@motiv8street
@motiv8street 3 ай бұрын
Thanks a lot
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
You are welcome!
What Are Constants & Variable Variables In PHP - Full PHP 8 Tutorial
8:07
КАРМАНЧИК 2 СЕЗОН 5 СЕРИЯ
27:21
Inter Production
Рет қаралды 586 М.
CAN YOU HELP ME? (ROAD TO 100 MLN!) #shorts
00:26
PANDA BOI
Рет қаралды 36 МЛН
How To Install PHP & What Are Web Servers - PHP 8 Tutorial
8:29
Program With Gio
Рет қаралды 175 М.
PHP Integer Data type - Full PHP 8 Tutorial
4:51
Program With Gio
Рет қаралды 53 М.
What Is Your Kubernetes Experience
16:02
TS4U
Рет қаралды 3
5 New AI Tools You Should Try
9:18
Skill Leap AI
Рет қаралды 11 М.
PHP Docker Tutorial - Nginx - PHPFPM VS Apache - Full PHP 8 Tutorial
14:39
PHP Boolean Data Type - Full PHP 8 Tutorial
4:45
Program With Gio
Рет қаралды 63 М.
PHP Namespace Tutorial - Full PHP 8 Tutorial
20:15
Program With Gio
Рет қаралды 52 М.
Creative 3D hover Card using HTML & CSS
5:33
mrMobin
Рет қаралды 485