Traversy Media
-
05:54
PHP Arrays & Foreach Loops
Added 97 Views / 0 LikesQuick video on simple php arrays and looping through them with foreach()
-
6:27:22
PHP For Absolute Beginners | 6.5 Hour Course
Added 65 Views / 0 LikesThis course is for absolute beginners and will give you a great kickstart to learning PHP. We'll first talk about what PHP is and why we should learn it, then we will setup a working environment and start coding This video covers all the basics: - How to declare Variables - How to work with strings, Arrays - How to work with file System - How to use cURL to fetch resources - Object Oriented PHP - Namespaces - Composer - Autoloading and much more... At
-
3:15:36
PHP For Beginners | 3+ Hour Crash Course
Added 71 Views / 0 LikesYour first step in learning PHP. We will go over all of the fundamentals and create a small PHP/MySQL project. ⭐ Sponsor: https://linode.com/traversy 💻 Github Repo: https://github.com/bradtraversy/php-crash 💻 Download Xampp: https://apachefriends.com 👇 PHP OOP MVC Udemy Course: https://www.udemy.com/course/object-oriented-php-mvc 💖 Show Support Patreon: https://www.patreon.com/traversymedia PayPal: https://paypal.me/traversymedia 👇 Follow Me On Social
-
10:06
PHP Front To Back - [Part 13] Ternary & Shorthand Syntax
Added 59 Views / 0 LikesIn this video we will look at the PHP ternary operator and some alternative syntax for if statements as well as loops. CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox11.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-... SUPPORT: We spend massive amounts of time creating these free videos, please donate to show your support: http://www.paypal.me/traversymedi
-
16:57
PHP Front To Back [Part 10] - $_SERVER Superglobal
Added 83 Views / 0 LikesIn this video we will create a simple webpage that displays the server, file and client info. We will use Twitter Bootstrap to make the page look nice and clean. CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox8.zip EDUONIX COURSES: Pleas use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts of time creating these free videos, please donate to show yo
-
13:21
PHP Front To Back [Part 11] - Get & Post Tutorial
Added 88 Views / 0 LikesIn this video we will take a look at the $_GET and $_POST superglobals as well as form processing. We will also look at the htmlentities() function for page security CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox9.zip EDUONIX COURSES: Pleas use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts of time creating these free videos, please donate to sho
-
13:35
PHP Front To Back [Part 12] - Common String Functions
Added 92 Views / 0 LikesIn this video we will go over some common and useful string functions such as substr() strpos() strtoupper() strtolower() ucwords() trim() str_replace() gzcompress() CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox10.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts of time creating these free videos, please donate to s
-
21:20 Popular
PHP Front To Back [Part 14] - Filters & Validation
Added 128 Views / 0 LikesIn this video we will look at PHP filters and how to validate data types, emails, urls, etc. We will also be able to sanitize data. Functions will include filter_has_var() filter_input() filter_var() filter_input_array() filter_var_array() CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox12.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-... SUPPORT: We spend
-
19:57 Popular
PHP Front To Back [Part 15] - PHP Contact Form
Added 106 Views / 0 LikesIn this video we will create a PHP contact form from scratch. We will also include server side form validation and messaging CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox13.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-... SUPPORT: We spend massive amounts of time creating these free videos, please donate to show your support: http://www.paypal.me/traver
-
10:31 Popular
PHP Front To Back [Part 16] - Sessions Tutorial
Added 138 Views / 0 LikesIn this video we will look at PHP sessions to carry information across multiple PHP pages. We will also look at redirecting with the header() function CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox14.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-... SUPPORT: We spend massive amounts of time creating these free videos, please donate to show your support: h
-
14:06
PHP Front To Back [Part 17] - Cookies Tutorial
Added 100 Views / 0 LikesSessions are recommended over cookies in most situations but it is good to understand how cookies work as well. In this video we will be using the setcookie() function to create cookies in PHP. We will also look at serializing data with serialize() and unserialize() CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox15.zip BROWSER EXTENSION: Momentum https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfp
-
13:48 Popular
PHP Front To Back [Part 18] - PHP & AJAX
Added 123 Views / 0 LikesIn this video I will show you how we can use PHP and AJAX together to build a simple suggestion engine for a form input CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox17.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-... SUPPORT: We spend massive amounts of time creating these free videos, please donate to show your support: http://www.paypal.me/traversymed
-
18:48 Popular
PHP Front To Back [Part 19] - File System Functions
Added 107 Views / 0 LikesIn this video we will look at some functions to work with files, folders and paths such as basename(), dirname(), file_get_contents(), fopen(), fread() and much more CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox17.zip BROWSER EXTENSION: Momentum https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca?hl=en EDUONIX COURSES: Please use affiliate links from website below http://www.trav
-
09:13 Popular
PHP Front To Back [Part 1] - Series Introduction
Added 116 Views / 0 LikesThis is the start of an ongoing series that will teach you the entire language of PHP. This series will include: Basic principles of PHP PHP7 / Apache / MySQL Setup Code Syntax (vars, arrays, loops, conditionals, functions, etc) Procedural & OOP Dynamic Pages Form Submission / Superglobals Working With Databases Mini Projects (Contact Form, User Login System, etc) OOP PHP MVC Udemy Course $10 Promo: https://www.udemy.com/object-oriented-php-mvc/?coupo
-
18:39
PHP Front To Back [Part 20] - OOP
Added 97 Views / 0 LikesIn this video I will introduce object oriented programming in PHP using classes, properties and methods CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox18.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-... SUPPORT: We spend massive amounts of time creating these free videos, please donate to show your support: http://www.paypal.me/traversymedia http://www.pa
-
26:14
PHP Front To Back [Part 21] - Fetching Data With MySQLi
Added 89 Views / 0 LikesIn this video we will start to work with the MySQLi extension. We will create a MySQL database using phpMyAdmin as well as a posts table to interact with. CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox19.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts of time creating these free videos, please donate to show your su
-
23:27 Popular
PHP Front To Back [Part 22] - MySQLi Insert, Update & Delete
Added 103 Views / 0 LikesIn this part we will be adding to the sample blog application and adding insert, update and delete functionality using the MySQLi extension. Continue with the OOP PHP MVC Udemy Course $10 Promo: https://www.udemy.com/object-oriented-php-mvc/?couponCode=TRAVERSY010 CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox20.zip EDUONIX COURSES: Please use affiliate links from website below http://www.traversymedia.com/eduon
-
08:03
PHP Front To Back [Part 2] - PHP7 & Xammp Installation
Added 59 Views / 0 LikesIn this video we will be installing Xammp which includes PHP 7, Apache and MySQL. This is in preparation for a big series on PHP
-
15:24 Popular
PHP Front To Back [Part 3] - Variables, Constants & Data Types
Added 111 Views / 0 LikesIn this video we will look at very basic PHP syntax including tags, comments, variables, constants and concatenation. CODE: Code For This Video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox1.zip 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
-
13:08 Popular
PHP Front To Back [Part 4] - Arrays
Added 114 Views / 0 LikesIn this video we will look at PHP arrays. There are 3 types.. Indexed Arrays Associative Arrays Multi-Dimensional CODE: Code For This Video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox2.zip 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
-
09:27 Popular
PHP Front To Back [Part 5] - Loops
Added 106 Views / 0 LikesIn 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/downloads/phpsandbox/phpsandbox3.zip 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
-
13:11 Popular
PHP Front To Back [Part 6] - Functions
Added 138 Views / 0 LikesIn this part we will look at user defined functions and some naming conventions. We are almost to the cool stuff :) CODE: Code For This Video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox4.zip COURSES: Premium Eduonix Courses http://www.traversymedia.com/eduonix-courses SHOW YOUR SUPPORT https://www.patreon.com/traversymedia ONE TIME DONATIONS: https://www.paypal.me/traversymedia
-
11:00
PHP Front To Back [Part 7] - Conditionals & Comparison
Added 94 Views / 0 LikesIn this video we will look at if statements as well as if...else and switches in PHP. This video is for PHP and programming beginners. There are more advanced topics to come CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox5.zip VISIT US: http://www.traversymedia.com EDUONIX COURSES: Pleas use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts of time c
-
11:21 Popular
PHP Front To Back [Part 8] - Dates & Timestamps
Added 110 Views / 0 LikesIn this video we will look at the PHP date() function as well as mktime() and strtotime() to create dates and timestamps from strings CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox6.zip VISIT US: http://www.traversymedia.com EDUONIX COURSES: Pleas use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts of time creating these free videos, please donate
-
08:23 Popular
PHP Front To Back [Part 9] - Include & Require
Added 108 Views / 0 LikesIn this video I will show you how to include a PHP file with PHP or HTML into another file saving you a lot of time and code writing. We will look at include, require and require_once CODE: Code for this video http://www.traversymedia.com/downloads/phpsandbox/phpsandbox7.zip VISIT US: http://www.traversymedia.com EDUONIX COURSES: Pleas use affiliate links from website below http://www.traversymedia.com/eduonix-courses SUPPORT: We spend massive amounts
-
24:05 Popular
PHP OOP - Beginners Crash Course
Added 124 Views / 0 LikesLets take a look at the basics and the fundamentals of object oriented programming and PHP. We will discuss... Objects & Classes Methods & Properties Visibility / Access Modifiers Construct & Destruct Static Keyword Abstract Classes FOR FULL COURSES - http://www.eduonix.com FOLLOW ME ON TWITTER - https://twitter.com/bradtraversy FOLLOW ON FACEBOOK - https://www.facebook.com/techguywebsolutions CONNECT ON LINKEDIN - https://www.linkedin.com/in/bradtrav
-
32:18 Popular
PHP REST API From Scratch [1] - Database & Read
Added 116 Views / 0 LikesIn this series we will put together a REST API using PHP with NO FRAMEWORK. We will use object oriented programming along with PDO to connect and query a MySQL database. Code: https://github.com/bradtraversy/php_rest_myblog • 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/traversymedi
-
25:01 Popular
PHP REST API From Scratch [2] - Single & Create
Added 104 Views / 0 LikesIn this part of the series we will add functionality to fetch single posts as well as make a POST request to add posts Code: https://github.com/bradtraversy/php_rest_myblog • 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
-
16:15
PHP REST API From Scratch [3] - Update & Delete
Added 99 Views / 0 LikesIn this part we will add the ability to update and delete a post and also start on the category model for you guys to finish up on your own Code: https://github.com/bradtraversy/php_rest_myblog • 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/tra
-
19:44 Popular
PHP vs. Python In 2018 - My Take...
Added 106 Views / 0 LikesAdd MailTag to Chrome: http://go.mailtag.io/7ubwpEqi In this video we are going to talk about PHP and Python and some of the differences in use, popularity, learning curve, frameworks and so on. • 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/tr









