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,962 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
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
Why avoid phpinfo in production? phpinfo displays sensitive server information publicly. ini_get only retrieves specific ...
440 views
1 year ago
When is PDO better than MySQLi? Use PDO if you need flexibility for multiple databases. PDO handles prepared statements ...
245 views
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
When should you use PHP ob_start()? Use `ob_start()` to capture and manage script output. It's essential when working with ...
95 views
If you would like to support me, please like, comment & subscribe, and check me out on Patreon: ...
4,953 views
7 years ago
When to use array_splice instead of array_slice in PHP? array_splice removes elements from the array and optionally replaces ...
8 views
Why is using require sometimes better than include in PHP? Require ensures that the file is included, otherwise, the script will ...
106 views
Why use mb_strtoupper instead of strtoupper in PHP? ⛴️ strtoupper works well for single-byte encodings, but can break ...
48 views
Why use session instead of cookies in PHP? Sessions store data on the server, making them more secure. Cookies store ...
1,699 views
PHP scraping using Python Helpful? Please use the *Thanks* button above! Or, thank me via Patreon: ...
Which method should you use for PHP database connection? mysqli_connect is faster when you need to connect to MySQL ...
108 views
When should you use require instead of autoloading in PHP? The require statement is ideal when you know exactly which files ...
71 views
Which is safer for handling form data in PHP? filter_input() allows you to validate and sanitize input at the same time.
80 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
Why prefer switch over if-else in PHP? Switch can be more efficient when comparing a single variable against many values.
87 views
When should I use is_null and empty in PHP? is_null is used to check if a variable is explicitly set to null. empty checks if a ...
309 views
Raspberry Pi: PHP or jquery to execute python scripts for GPIO Helpful? Please support me on Patreon: ...
34 views
4 years ago