Travel & Events

baziriza
1 Views ยท 4 months ago

StackOverflow Developer Survey: https://insights.stackoverflow.com/survey/2019
โ–บClick here to subscribe - https://www.youtube.com/channe....l/UCeVMnSShP_Iviwkkn


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
1 Views ยท 4 months ago

In this tutorial you will learn php $_GET , $_POST and $_REQUEST tutorial in Hindi, Urdu.You can learn how to submit form data from one php page to another php page for print or database related queries with super global variables of php like $_GET and $_POST 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
5 Views ยท 4 months ago

Learn MySQL from scratch! ๐Ÿ“š This beginner-friendly tutorial covers SQL essentials for working with databases.

๐Ÿš€ Want a complete MySQL deep dive?
- Check out my full course: http://bit.ly/2uAoPM3
- Subscribe for more awesome content: https://goo.gl/6PYaGF

โœ‹ Want more? Follow me on:
- 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/

๐Ÿ“• Get the FREE goodies:
- SQL cheat sheet: http://bit.ly/2JCO73l
- Scripts to create databases: https://bit.ly/3rvtqdO

๐Ÿ“– TABLE OF CONTENT
0:00:00 Introduction
0:01:02 What is SQL?
0:04:24 Cheat Sheet
0:04:50 Installing MySQL on Mac
0:09:48 Installing MySQL on Windows
0:15:08 Creating the Databases for this Course
0:23:40 The SELECT Statement
0:29:30 The SELECT Clause
0:38:18 The WHERE Clause
0:43:35 The AND, OR, and NOT Operators
0:51:38 The IN Operator
0:54:41 The BETWEEN Operator
0:56:53 The LIKE Operator
1:02:31 The REGEXP Operator
1:11:51 The IS NULL Operator
1:14:18 The ORDER BY Operator
1:21:23 The LIMIT Operator
1:24:50 Inner Joins
1:33:16 Joining Across Databases
1:36:03 Self Joins
1:40:17 Joining Multiple Tables
1:47:03 Compound Join Conditions
1:50:44 Implicit Join Syntax
1:53:04 Outer Joins
1:59:31 Outer Join Between Multiple Tables
2:05:50 Self Outer Joins
2:08:02 The USING Clause
2:13:25 Natural Joins
2:14:46 Cross Joins
2:18:01 Unions
2:26:29 Column Attributes
2:29:54 Inserting a Single Row
2:35:40 Inserting Multiple Rows
2:38:58 Inserting Hierarchical Rows
2:44:51 Creating a Copy of a Table
2:53:38 Updating a Single Row
2:57:33 Updating Multiple Rows
3:00:47 Using Subqueries in Updates
3:06:24 Deleting Rows
3:07:48 Restoring Course Databases

๐Ÿ’ก Why Learn SQL?
- It's the standard language for working with databases.
- In-demand skill for developers, data scientists, and more.
- MySQL is popular, open-source, and easy to learn.

๐Ÿ‘‰ This tutorial is perfect for you if:
- You're completely new to SQL.
- You want a practical, hands-on approach.
- You work (or want to work) with data.

#programming #coding

baziriza
2 Views ยท 4 months ago

If you want to learn DSA + Web Development from us, then you can study from
๐Ÿ”ฅNew DSA + Development Batch (Sigma) : https://www.apnacollege.in/course/sigma-batch

----------------------------------------------------
Join the Apni Community๐Ÿ”ฅ : https://telegram.me/+k4rdgTPwmm5kMGVl

baziriza
5 Views ยท 4 months ago

Source code Link : https://github.com/Tariqu/database_connection_php
In this video you will learn How to store form data into the database
First of all to send the form data into the database we need a server side programming language which will take form data and that program will make a connection with database and then using sql insert query will store the form data into database.
=============================================
For any Business enquiry contact us
Gmail :- [email protected]
WhatsApp :- +917978073704 (for only business query)
=============================================
Here I have used php as a server side programming language and MySQL as a database
To Send The form data to server side php file we have to specify php file name inside the form tag using action attribute so this php file will execute when we will submit this form

we have two different method to send the data to sever GET or POST post method is more secure way to send data to the server side

In php to get the data which is send from client side we have to use appropriate global variable if client send data using post method then we have to use $_POST if client has send using GET method then we have to use $_GET variable to get that data

after getting the data at server side We have to do a Connection with the database. PHP provide the Full support and method to do MySQL database connection in php

Prepare method save your query from sql injection

prepare method provide the binding mechanism to bind the data at run time not at compile time

#HTML_Form #MySQL #PHP

-~-~~-~~~-~~-~-
Please watch: "MySQL Database connection in java 12 using eclipse 2019"
https://www.youtube.com/watch?v=OnmVTToq32I
-~-~~-~~~-~~-~-

baziriza
4 Views ยท 4 months ago

Join Free Training On How to Start Your Web Development Career in 90 Days?

Click Link below : ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡

http://codeeasyacademy.com/training

My GOAL is to create Best Web Development Tutorial on Youtube !

Join our Facebook group :- https://www.facebook.com/groups/362439687980553

Follow me on my personal social media accounts :-
Instagram :- https://www.instagram.com/rajdeepdhakad/
Facebook :- https://www.facebook.com/RajdeepDhakad
Snapchat :- @rajdeepdhakad

baziriza
8 Views ยท 4 months ago

Select Data From MySQL Database | PHP Tutorial | Learn PHP Programming | PHP for Beginners. Today we will learn how to select data from a database table. This is used when we want to fetch data and display it on a website.

โžค 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

#HowtoLearnPHPLanguage #QuickSupport #Career

How to Learn PHP Language With Full Information? โ€“ [Hindi] โ€“ Quick Support. เค†เคœ เค•เฅ‡ เค‡เคธ เคตเคฟเคกเคฟเคฏเฅ‹ เคฎเฅ‡เค‚ เคนเคฎ เคœเคพเคจเฅ‡เค‚เค—เฅ‡ เค•เคฟ PHP เคนเฅ‹เคคเคพ เค•เฅเคฏเคพ เคนเฅˆ, เค‡เคธเค•เฅ‡ เคฒเคฟเค เค•เฅเคฏเคพ-เค•เฅเคฏเคพ เคธเฅ€เค–เคจเคพ เคšเคพเคนเคฟเค เค”เคฐ เค•เคนเคพเค เคธเฅ‡ เค†เคช PHP เคฒเฅˆเค‚เค—เฅเคตเฅ‡เคœ เคธเฅ€เค– เค•เคฐ เคตเฅ‡เคฌ เคกเฅ‡เคตเคฒเคชเคฐ เคฌเคจ เคธเค•เคคเฅ‡ เคนเฅˆเค‚. เค…เค‚เคค เคฎเฅ‡เค‚ เคนเคฎ เค†เคชเค•เฅ‹ เค•เฅเค› เคœเคฐเฅเคฐเฅ€ เคŸเคฟเคชเฅเคธ เคฆเฅ‡เค‚เค—เฅ‡ เคœเคฟเคธเคธเฅ‡ เค†เคช เคฌเฅ‡เคธเฅเคŸ PHP เคกเฅ‡เคตเคฒเคชเคฐ เคฌเคจ เคธเค•เคคเฅ‡ เคนเฅˆเค‚. เค‡เคธเฅ€เคฒเคฟเค เค‡เคธ เคตเคฟเคกเคฟเคฏเฅ‹ เค•เฅ‹ เคชเฅ‚เคฐเคพ เคœเคฐเฅเคฐ เคฆเฅ‡เค–เฅ‡ |

Website: https://qsofficial.com

Facebook: https://www.facebook.com/QuickSupportChannel

Twitter: https://twitter.com/QS_Channel

Instagram: https://www.instagram.com/quick_support007

Youtube: https://www.youtube.com/c/QuickSupport

Linkedin: https://www.linkedin.com/in/Anil-Nakrani

Channel Owner: Anil Nakrani

baziriza
2 Views ยท 4 months ago

๐Ÿ”ฅ UNIQUE DEVELOPER BOOTCAMP AND MENTORING PROGRAM:
https://unclestef.com/

๐Ÿ”ฅ CODER'S CAREER PATHS WEBINAR - FREE 29 MINUTE VIDEO:
https://newsletters.stefanmisc....hook.com/coders_care

๐Ÿ”ฅ LIZARD WIZARD KOMODO - TRANSFORMATIONAL MIND TRAINING:
https://newsletters.stefanmischook.com/komodo

๐Ÿ”ฅ THEBODYDEVELOPER - Get in shape and lose weight ... WITHOUT exercise!
https://www.thebodydeveloper.com/
*************

Channel Discord Server: https://discord.gg/JvavajCw2b

WEB HOST PAYS FOR YOUR WEB DESIGN TRAINING IN 2021:
https://www.killersites.com/bl....og/2020/web-hosting-

POPULAR & EASY CODING COURSES:
Full stack web developer course: https://school.studioweb.com/s....tore/course/complete
Python 3 Foundations & Certification: https://school.studioweb.com/store/course/python_3_foundations__&_certification_package
Complete Freelancer: https://school.studioweb.com/s....tore/course/complete
Complete Entrepreneur: https://school.studioweb.com/s....tore/course/complete


*************


๐ŸฆŽ Lizard Wizard Course:
https://school.studioweb.com/s....tore/course/lizard_w

๐Ÿ“š BOOKS TO READ:
My Beginners HTML5, CSS3: https://amzn.to/2wKsVTh
โ€ฆ Complements Studioweb courses on HTML5, CSS3 and JavaScript.

Refactoring: Improving the Design of Existing Code (2nd Edition) https://amzn.to/3o5cTbw
HeadFirst Design Patterns: https://amzn.to/2LQ0Gdh
Java Refactoring: Improving the Design of Existing Code (1st Edition) https://amzn.to/3a9nSsZ

The Naked Ape:
https://amzn.to/3fhS1Lj

โœ‰๏ธ STAY IN CONTACT:
Stef's social links:
Instagram: https://www.instagram.com/stefanmischook/?hl=en
Twitter: https://twitter.com/killersites

Stef's business channel:
https://www.youtube.com/channe....l/UCZdr0ql_B240VBVIN

๐Ÿ‘‰ GOOGLE REVIEW:
https://g.page/studioWebedu/review?mt
Leave a Google review about Stef.

READ MY GOOGLE REVIEWS:
https://bit.ly/2MUii8x

MY MOUSE & KEYBOARD:
Logitech Keyboard I use: https://amzn.to/38jYDqE
Logitech mouse I use: https://amzn.to/2IeVvBj

SUPPLEMENTS THAT WORK AMAZING FOR ME:

Protein Essentials Beef Gelatine Powder:
https://amzn.to/2Pf52vL

... Healed my very bad knee. If you have joint problems, this *could do miracles for you.

Webber Naturals 88862 Glucosamine Chondroitin
https://amzn.to/3ss9WEa


MY CAMERA GEAR:
Godox VL150 lights: https://amzn.to/3lhsYZP
Sigma 18-35 lens: https://amzn.to/33sRh0T
Canon C300 Mark 3 Cinema Camera

Thanks!

Stef

#mentoring #phplaravel #freelancedeveloper

baziriza
1 Views ยท 4 months ago

How to Display Error Messages Using PHP | PHP Tutorial | Learn PHP Programming. In this PHP tutorial, you will learn how to show the user an error message using PHP, after they submit a form on your website. This is done by sending data back to the form using PHP validation.

We will also cover how to keep the data in the form inputs, if the user is sent back with an error, so they don't need to re-type everything.

โžค 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




Showing 25 out of 26