Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
108,623 results
Not sure which testing tool to use in your project? In this video, I break down the best automated testing tools for the most ...
94 views
5 months ago
Software Engineering: python vs php (for project managers) Helpful? Please support me on Patreon:Â ...
3 views
3 years ago
If you would like to support me, please like, comment & subscribe, and check me out on Patreon:Â ...
4,950 views
7 years ago
When to use require_once vs include_once in PHP? ⛹️ require_once ensures that a file is included once and causes a fatal ...
134 views
1 year ago
When should I use exit over die in PHP? exit() and die() are essentially the same, but die() is often used for readability in error ...
152 views
11 months ago
PHP scraping using Python Helpful? Please use the *Thanks* button above! Or, thank me via Patreon:Â ...
8 views
12,380 views
Why is filter_input safer than $_POST? Filter_input reads data directly from the environment, avoiding tampering. It validates ...
36 views
Build a Web API in Python https://youtu.be/Bdeclymkt-A A web API, developed in any programming language, can be called by ...
34,753 views
5 years ago
Why use session instead of cookies in PHP? Sessions store data on the server, making them more secure. Cookies store ...
1,695 views
Which one is better for splitting strings in PHP? explode() is great when you need to split a string by a delimiter, like a comma or ...
75 views
When should you use session_start() vs session_id()? session_start() is essential to begin a session and generate a session IDÂ ...
88 views
Why is eval better than include in PHP? eval() can execute dynamic PHP code from a string, offering flexibility. include()Â ...
464 views
Why avoid phpinfo in production? phpinfo displays sensitive server information publicly. ini_get only retrieves specific ...
440 views
When should I use global or static variables in PHP? Use global variables when you need to share data between different ...
187 views
Should you use implode or join in PHP? 🎛️ The functions implode and join are interchangeable in PHP, but implode is more ...
17 views
When to use array_splice instead of array_slice in PHP? array_splice removes elements from the array and optionally replaces ...
What happens if include fails in PHP? include will generate a warning but continue the script execution. require will generate ...
38 views
Unlock the full potential of Eclipse IDE for web development! In this guide, you'll learn how to set up Eclipse IDE for PHP, ...
97 views
Which database connection is better for PHP: PDO or MySQLi? PDO is more flexible as it supports multiple database types.
107 views