Travel & Events

baziriza
1 Views · 4 months ago

In this lesson, you will learn all about classes & objects in PHP. How to create classes & objects, set properties, typed properties, their visibility, create methods, learn about method chaining, what are constructors & destructors & so on. Make sure to watch it till the end since I cover some important things that you should be aware of when working with destructors.

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: https://www.patreon.com/programwithgio
THANK YOU!

LESSON 2.2
Course Outline - https://github.com/ggelashvili..../learnphptherightway
Course Playlist - https://www.youtube.com/playli....st?list=PLr3d3QYzkw2

CHAPTERS
00:00 - Objects & Classes
00:56 - Creating class & object
02:58 - Class properties
04:43 - Typed properties
07:50 - Class constructor, $this, & constructor arguments
09:54 - Methods
11:34 - Method chaining
13:44 - Creating objects using variables
14:05 - Creating multiple objects of the same class
14:40 - Class destructor
18:05 - stdClass & object casting

baziriza
4 Views · 4 months ago

In this tutorial you will learn php basic code structure in Hindi, Urdu.You can learn how to write your first program in php and what is the php basic syntax.

PHP Tutorial in Hindi Playlist
https://www.youtube.com/playli....st?list=PL0b6OzIxLPb

Follow us on Facebook
https://www.facebook.com/yahooobaba/

Follow us on Twitter
https://twitter.com/YahoooBaba

#php #webdevelopment #webdesign

baziriza
1 Views · 4 months ago

Inserting database results into array in PHP - Learn PHP backend programming. Today we will learn how to insert data from a database table into an array.

➤ 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 :)

Material for this lesson: https://www.patreon.com/posts/....lesson-material-4236

baziriza
4 Views · 4 months ago

UPDATED VIDEO LINK HERE: https://www.youtube.com/watch?v=gCo6JqGMi30&ab_channel=DaniKrossing

In this PHP tutorial you will learn how to create a login system in PHP from, and how to show content after being logged in. You will also learn about error handlers, and MySQLi databases, which includes how to make a login form and a signup form.

I am aware that this is a very long video, but I promise it will be one of the easiest guides you will ever find on how to create a login system from scratch!

If you get any errors during this tutorial, make sure to check out my solutions at the very bottom of this description! :)

➤ IMPORTANT YOU READ THIS!

In this video I allow users to log in using either their e-mail or username. Because of this we run into an issue later.

If a user tries to sign up with multiple accounts using the same e-mail then our script gets confused when we try to log in using our e-mail because we have many users with the same e-mail in our database. However this is VERY easy to fix!

To fix this, remove the part of the "login script" where we check the database for a username AND e-mail, and instead make sure we ONLY check for the username. Do this in both the SQL statement AND the prepared statement function called mysqli_stmt_bind_param().

The SQL statement should say:
$sql = "SELECT * FROM users WHERE uidUsers=?;";

And the function should say:
mysqli_stmt_bind_param($stmt, "s", $mailuid);

➤ LINKS

Install XAMPP & a local server: https://www.youtube.com/watch?v=mXdpCRgR-xE
Regular expressions (search patterns): https://www.youtube.com/watch?v=In5NBIRfMrQ
PHP Password Recovery System: https://www.youtube.com/watch?v=wUkKCMEYj9M

➤ CHAPTERS

(00:00:00) Introduction
(00:01:08) Technical info you need to know
(00:03:45) What you need to have ready before we start
(00:05:28) HTML & CSS markup
(00:23:49) Setting up our database
(00:29:59) Creating the PHP signup script
(01:15:51) Creating the PHP login script
(01:35:39) How to start a session on all website pages
(01:36:37) How to change website content when logged in
(01:41:10) Creating the PHP logout script
(01:42:56) How to create error messages
(01:48:42) If you got an error during this tutorial

➤ 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 :)

Material for this lesson: https://www.patreon.com/posts/....lesson-material-4236

➤ ERRORS YOU MIGHT RUN INTO!!!

▸"signup=empty"
Make sure you wrote "mysqli_connect" and NOT "mysql_connect" in the dbh.inc.php file!

▸"unexpected }"
If you get this error message:
Parse error: syntax error, unexpected '}'
Then it is because you forgot to close a ) or ; somewhere.

▸"unexpected ;"
If you get this error message:
Parse error: syntax error, unexpected ';'
Then it is because you forgot to close a } or ) somewhere. Probably because you made a mistake with your parenthesis near the "empty()" functions in your signup script.

▸"hashed pwd error"
If you get an error in the script when you hash the password, then it is because you decided not to follow my steps exactly in the video when I created the database table. Make sure you DON'T set the varchar() to a lower value! When you hash the password it will take up a lot of space in this column, and if you set a lower number then it won't fit!

▸"signup=success but database is empty?"
Here there might be a few reasons for your error. 1st is that you made a syntax/spelling mistake in your code. And yes you will claim that your code is identical to mine, but in 90% of the cases people claim this, I still find a syntax error in their code. So check your code for errors!
2nd reason is that MAMP seems to cause a lot of issues for people. Therefore try using XAMPP and make sure you write the same as me in the dbh.inc.php file.
3nd reason might be because you didn't follow the tutorial 100% when we set up the database at the beginning.

▸"HTTP ERROR 500"
HTTP ERROR 500 is a server error, meaning that you are most likely using an outdated version of apache or mysql. Try updating your servers and make sure that you are using the latest version of PHP.

baziriza
4 Views · 4 months ago

Learn how to use Emmet to write HTML code faster in VS Code https://docs.emmet.io/cheat-sheet/

#shorts #html #programming

Collect all the VS Code speed tips here https://youtu.be/ifTF3ags0XI

baziriza
5 Views · 4 months ago

In this tutorial you will learn php comparison operators tutorial in Hindi, Urdu.You can learn what is php comparison operators / relational operators and how to use them for conditional statement in hindi.

PHP Tutorial in Hindi Playlist
https://www.youtube.com/playli....st?list=PL0b6OzIxLPb

Official Website
http://www.yahoobaba.net/

Follow us on Facebook
https://www.facebook.com/yahooobaba/

Follow us on Twitter
https://twitter.com/YahoooBaba

#php #webdevelopment #webdesign

baziriza
1 Views · 4 months ago

►Source Code + Text Tutorials - http://codewithharry.com/video....s/php-tutorials-in-h
►This video is a part of this PHP tutorials in Hindi playlist - https://www.youtube.com/playli....st?list=PLu0W_9lII9a
►For Doubt Solving, Brain Storming Sessions & guaranteed replies, join the channel membership here: https://www.youtube.com/channe....l/UCeVMnSShP_Iviwkkn
►Click here to subscribe - https://www.youtube.com/channe....l/UCeVMnSShP_Iviwkkn
►Checkout my English channel here: https://www.youtube.com/ProgrammingWithHarry

Best Hindi Videos For Learning Programming:

►Learn Python In One Video - https://www.youtube.com/watch?v=ihk_Xglr164

►Python Complete Course In Hindi - https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►C Language Complete Course In Hindi -
https://www.youtube.com/playlist?list=PLu0W_9lII9aiXlHcLx-mDH1Qul38wD3aR&disable_polymer=true

►JavaScript Complete Course In Hindi -
https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►Learn JavaScript in One Video - https://www.youtube.com/watch?v=onbBV0uFVpo

►Learn PHP In One Video - https://www.youtube.com/watch?v=xW7ro3lwaCI

►Django Complete Course In Hindi -
https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►Machine Learning Using Python - https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►Creating & Hosting A Website (Tech Blog) Using Python - https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►Advanced Python Tutorials - https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►Object Oriented Programming In Python - https://www.youtube.com/playli....st?list=PLu0W_9lII9a

►Python Data Science and Big Data Tutorials - https://www.youtube.com/playli....st?list=PLu0W_9lII9a

Follow Me On Social Media
►Website (created using Flask) - http://www.codewithharry.com
►Facebook - https://www.facebook.com/CodeWithHarry
►Instagram - https://www.instagram.com/codewithharry/
►Personal Facebook A/c - https://www.facebook.com/geekyharis
Twitter - https://twitter.com/Haris_Is_Here

baziriza
5 Views · 4 months ago

Become a Python pro! 🚀 This comprehensive tutorial takes you from beginner to hero, covering the basics, machine learning, and web development projects.

🚀 Want to dive deeper?
- Check out my Python mastery course: https://bit.ly/35BLHHP
- Subscribe for more awesome Python content: https://goo.gl/6PYaGF

👉 New version available Watch here: https://youtu.be/kqtD5dpn9C8

📕 Get the FREE goodies:
- Python cheat sheet: http://bit.ly/2Gp80s6
- Supplementary materials (spreadsheet): https://bit.ly/4dYXJ2p
- Python exercises for beginners: https://goo.gl/1XnQB1

✋ Stay connected:
- Twitter: https://twitter.com/moshhamedani
- Facebook: https://www.facebook.com/programmingwithmosh/
- Instagram: https://www.instagram.com/codewithmosh.official/
- LinkedIn: https://www.linkedin.com/school/codewithmosh/

⭐ My favorite Python books
- Python Crash Course: https://amzn.to/2GqMdjG
- Automate the Boring Stuff with Python: https://amzn.to/2N71d6S
- A Smarter Way to Learn Python: https://amzn.to/2UZa6lE
- Machine Learning for Absolute Beginners: https://amzn.to/2Gs0koL
- Hands-on Machine Learning with scikit-learn and TensorFlow: https://amzn.to/2IdUuJy

📖 TABLE OF CONTENT
00:00:00 Introduction
00:01:49 Installing Python 3
00:06:10 Your First Python Program
00:08:11 How Python Code Gets Executed
00:11:24 How Long It Takes To Learn Python
00:13:03 Variables
00:18:21 Receiving Input
00:22:16 Python Cheat Sheet
00:22:46 Type Conversion
00:29:31 Strings
00:37:36 Formatted Strings
00:40:50 String Methods
00:48:33 Arithmetic Operations
00:51:33 Operator Precedence
00:55:04 Math Functions
00:58:17 If Statements
01:06:32 Logical Operators
01:11:25 Comparison Operators
01:16:17 Weight Converter Program
01:20:43 While Loops
01:24:07 Building a Guessing Game
01:30:51 Building the Car Game
01:41:48 For Loops
01:47:46 Nested Loops
01:55:50 Lists
02:01:45 2D Lists
02:05:11 My Complete Python Course
02:06:00 List Methods
02:13:25 Tuples
02:15:34 Unpacking
02:18:21 Dictionaries
02:26:21 Emoji Converter
02:30:31 Functions
02:35:21 Parameters
02:39:24 Keyword Arguments
02:44:45 Return Statement
02:48:55 Creating a Reusable Function
02:53:42 Exceptions
02:59:14 Comments
03:01:46 Classes
03:07:46 Constructors
03:14:41 Inheritance
03:19:33 Modules
03:30:12 Packages
03:36:22 Generating Random Values
03:44:37 Working with Directories
03:50:47 Pypi and Pip
03:55:34 Project 1: Automation with Python
04:10:22 Project 2: Machine Learning with Python
04:58:37 Project 3: Building a Website with Django

#Python #AI #MachineLearning #WebDevelopment

baziriza
4 Views · 4 months ago

Insert data into array in PHP - Learn PHP backend programming. Today we will learn how to insert data into arrays that are either empty or already has data in them.

➤ 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 :)

Material for this lesson: https://www.patreon.com/posts/....lesson-material-4236

baziriza
1 Views · 4 months ago

In this tutorial you will learn php ajax introduction tutorial in Hindi, Urdu.You can learn what is ajax and how to use ajax with php mysql and jQuery in hindi.You will also learn how to show mysql data dynamically with php and ajax.

✅ PHP Tutorial in Hindi Playlist
https://www.youtube.com/playli....st?list=PL0b6OzIxLPb

✅ Official Website
http://www.yahoobaba.net/

✅ Follow us on Facebook
https://www.facebook.com/yahooobaba/

✅ Follow us on Twitter
https://twitter.com/YahoooBaba

✅ Follow us on Instagram
https://www.instagram.com/yahoo_baba/

#php #ajax #phpmysql




Showing 18 out of 19