Top videos

baziriza
4 Views · 4 months ago

এই এপিসোডে আমরা জানবো PHP দিয়ে বানানো বেশ কিছু চমৎকার রিয়েল লাইফ CLI টুলস সম্পর্কে!

baziriza
4 Views · 4 months ago

In this video we will look at PHP loops. There are 4 types we will look at...

For Loop
While Loop
Do..While Loop
Foreach Loop

CODE: Code For This Video
http://www.traversymedia.com/d....ownloads/phpsandbox/

COURSES: Premium Eduonix Courses
http://www.traversymedia.com/eduonix-courses

SUPPORT THIS CHANNEL WITH A CUP OF COFFEE PER MONTH:
https://www.patreon.com/traversymedia

ONE TIME DONATIONS:
https://www.paypal.me/traversymedia

baziriza
4 Views · 4 months ago

Java is one of the most successful and most dreaded technologies in the computer science world. Let's roast this powerful open-source programming language to find out why it has so many haters.

#java #programming #comedy #100SecondsOfCode

🔗 Resources

Java Website https://java.com
Java in 100 Seconds https://youtu.be/l9AzO1FMgM8
Why Java Sucks https://tech.jonathangardner.n....et/wiki/Why_Java_Suc
Why Java Doesn't Suck https://smartbear.com/blog/ple....ase-stop-staying-jav

🔥 Get More Content - Upgrade to PRO

Upgrade to Fireship PRO at https://fireship.io/pro
Use code lORhwXd2 for 25% off your first payment.

🎨 My Editor Settings

- Atom One Dark
- vscode-icons
- Fira Code Font

🔖 Topics Covered

- Why do people hate Java?
- Does Java suck?
- Is Java still a good language?
- Java Criticisms
- Java Memes and Jokes
- Roast of Java

baziriza
4 Views · 4 months ago

In this tutorial we start looking at the first programming concept, variables. Variables are used to store data and can be called by using the variable name and the data that it holds will be outputted instead.

http://howtostartprogramming.c....om/PHP/php-tutorial-
For more information, check out the website:

baziriza
4 Views · 4 months ago

In this video I show you how to setup PHPMD aka the PHP Mess Detector to lint and scan your PHP Code and our WordPress Theme called DevWP.

Get DevWP: https://www.pixemweb.com/premium-wordpress-themes/

PHPMD is a static analysis tool that helps ensure you are following Modern Best Coding Practices while developing your project before you release your code to production environments.

In this on going series on how to code a custom WordPress theme, we use 5 static analysis tools and dynamic analysis tools to ensure high quality code.

DevWP is a WordPress Hybrid Theme I've been working on for years and my workflow has evolved with the goal of streamlining my process.

#php #phpdeveloper #wordpressdevelopment

baziriza
4 Views · 4 months ago

5 tips how to be an awesome php programmer will outline a few of the practises I adhere to to try better myself when using the php programming language to build websites as a web developer

Ask questions at
http://www.lswebapps.com/forums

Visit website at
http://www.lswebapps.com

Twitter Url
https://twitter.com/LSWebApps

Facebook Page
https://www.facebook.com/LSWebApps

Please like, comment and subscribe if you find the videos useful.

LSWAT - LS WEB APPS TUTORIALS

baziriza
4 Views · 4 months ago

In this video series we will build a PHP payment page that accepts credit cards using the stripe API and also stores the data in a MySQL database using PDO. We will be creating tables and models for customers and transactions to store them in the database and retrieve them within the app.

SPONSOR: Eduonix Machine Learning Course
https://goo.gl/jo6vNd

CODE: Github Repo
https://github.com/bradtraversy/php_stripe_paypage

Stripe API Docs: Card Element Quickstart
https://stripe.com/docs/stripe....-js/elements/quickst

PDO Class Gist:
https://gist.github.com/bradtr....aversy/a77931605ba9b

PHP OOP Udemy Course:
https://www.udemy.com/object-o....riented-php-mvc/?cou

💖 BECOME A PATRON: Show support & get perks!
http://www.patreon.com/traversymedia

Website & Udemy Courses
http://www.traversymedia.com

Follow Traversy Media:
http://www.facebook.com/traversymedia
http://www.twitter.com/traversymedia
http://www.instagram.com/traversymedia

The Developer Hangout: Public Discord Server
https://discord.gg/developers

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
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.




Showing 34 out of 35