Oreilly - PHP and MySQL - 9781771370578
Oreilly - PHP and MySQL
by Doug Bierer | Publisher: Infinite Skills | Release Date: December 2012 | ISBN: 9781771370578


In this video training title from Doug Bierer, you will learn the fundamentals of PHP and MySQL. These two platforms have been virtually inseparable for many years, and major groundbreaking websites such as WordPress, Wikipedia, and Facebook use PHP and MySQL technologies.This computer software training is designed for the beginner; no previous programming or database experience is required. Your training begins with the absolute basics, covering topics such as creating variables, working with data types and outputting them to a webpage. You will learn how to work with arrays, how to use loops and control structures such as foreach, while and if. You will learn about functions and creating classes for object-oriented programming. You will master interacting with MySQL and using SQL functions to store and retrieve data. Doug also provides in-depth lessons on how PHP and MySQL can be used to send email, work with date and time functions, use cookies and sessions, building web forms, and much more.Throughout this training course you will complete labs that re-enforce the concepts you have learnt. Once you have completed this video tutorial you will be well versed in the fundamentals of creating web applications using PHP and MySQL. Working files are included, allowing you to follow along with the author throughout the lessons.
  1. Getting Started
    • What The Course Covers 00:11:22
    • Course Setup Using XAMPP 00:07:00
    • Installing XAMPP On Windows 00:06:50
    • Installing MAMP On The Mac 00:05:05
    • Installing XAMPP On Linux 00:04:53
    • Configuring PHP And MySQL 00:11:59
    • Configuring Apache 00:09:34
    • Using Editors And IDEs 00:06:59
    • Saving Your Code 00:02:38
    • Searching PHP And MySQL Documentation 00:07:55
    • Getting Help And Verifying XAMPP Status 00:07:05
    • Setup And Finding Course Files 00:06:04
    • Lab: Building A New Website 00:03:56
    • Solution: Building A New Website 00:03:33
  2. Understanding The Basics
    • Creating Variables In PHP 00:05:32
    • Assigning Different Data Types 00:09:20
    • Performing Arithmetic Operations 00:05:44
    • Adding Comments To The Code 00:02:31
    • Assigning Constant Values 00:04:09
    • Using The printf Command To Format A String 00:04:26
    • Understanding The substr Command 00:04:42
    • Working With Strings 00:08:12
    • Debugging An Application 00:07:39
    • Lab: Mixing HTML And PHP 00:03:04
    • Solution: Mixing HTML And PHP 00:04:43
  3. Working With Arrays
    • Working With Numeric Keys 00:03:24
    • Working With Associative Arrays 00:02:01
    • Assigning Values To Arrays 00:05:14
    • Creating A Multidimensional Array 00:05:31
    • Searching Arrays 00:05:08
    • Sorting Arrays 00:07:33
    • Removing Values From Arrays 00:04:21
    • Measuring Array Differences 00:03:27
    • Merging Arrays 00:01:27
    • Lab: Using An Array To Generate A Drop Down Menu 00:02:09
    • Solution: Using An Array To Generate A Drop Down Menu 00:04:20
  4. Creating Control Structures: Looping And Branching
    • Comparing Values 00:05:21
    • Using if, else, And elseif 00:07:12
    • Using switch 00:03:16
    • Setting Up A for Loop 00:04:35
    • Configuring while And do while Loops 00:05:34
    • Using A foreach Loop 00:05:58
    • Branching With continue, break, And goto 00:05:19
    • Lab: Using Loops To Display Rows Of Data On A Web Page 00:02:17
    • Solution: Using Loops To Display Rows Of Data On A Web Page 00:03:23
  5. Managing The Code: Functions
    • Using Built-In Functions 00:05:36
    • Creating Your Own Functions 00:06:29
    • Returning Values 00:03:53
    • Defining Mandatory And Optional Parameters 00:04:11
    • Using Parameters By Reference 00:05:32
    • Handling A Variable Number Of Parameters 00:04:11
    • Understanding Global Variables 00:06:41
    • Lab: Creating A Function Which Paginates Rows Of Data 00:02:52
    • Solution: Creating A Function Which Paginates Rows Of Data 00:08:33
  6. Managing The Code: Object-Oriented Programming
    • Defining Classes 00:09:46
    • Adding Properties 00:04:56
    • Creating Methods 00:07:54
    • Determining The Visibility Level 00:07:59
    • Building Classes By Inheritance 00:05:14
    • Handling Exceptions 00:07:18
    • Introducing The MVC (Model-View-Controller) Design Pattern 00:05:27
    • Lab: Building An MVC Website Using OOP 00:01:54
    • Solution: Building An MVC Website Using OOP 00:03:08
  7. Managing The Code: External Libraries
    • Loading Code With include 00:02:48
    • Loading Code With require 00:04:34
    • Loading Code Once Only 00:04:05
    • PHP Extensions And PECL 00:06:16
    • PHP Libraries And PEAR 00:04:32
    • Lab: Downloading An External Library 00:02:20
    • Solution: Downloading An External Library 00:03:36
  8. Managing Files
    • Using The f* Family 00:07:16
    • Using The *file* Family 00:05:10
    • Understanding Streams 00:07:22
    • Updating The Error_Log 00:05:42
    • Parsing Directory Structures 00:04:15
    • Lab: Reading A CSV File 00:03:31
    • Solution: Reading A CSV File 00:08:38
  9. Managing A MySQL Database
    • Understanding RDBMS Terminology 00:05:52
    • Command Line Access 00:04:24
    • Using phpMyAdmin 00:09:57
    • Configuration 00:12:16
    • Creating A Database 00:08:48
    • Managing Tables - Part 1 00:07:57
    • Managing Tables - Part 2 00:07:08
    • Understanding Indexes And Relationships 00:06:48
    • Establishing Relationships And Constraints 00:09:34
    • Lab: Defining Tables And Relationships For A Website 00:04:33
    • Solution: Defining Tables And Relationships For A Website 00:08:47
  10. Understanding Structured Query Language (SQL)
    • Retrieving Data Using SELECT 00:10:46
    • Adding Data Using INSERT 00:08:42
    • Editing Data Using UPDATE 00:07:57
    • Removing Data Using DELETE 00:05:31
    • Performing Advanced Queries Using JOIN 00:11:51
    • Lab: Creating Select, Insert, Update, And Delete SQL Statements 00:02:25
    • Solution: Creating Select, Insert, Update, And Delete SQL Statements 00:10:42
  11. Using PHP To Interact With A MySQL Database
    • Understanding The Different MySQL Database Extensions 00:10:39
    • Reading Data From A Table 00:09:57
    • Writing Data To A Table 00:11:33
    • Updating Data In A Table 00:09:56
    • Deleting Data From A Table 00:09:52
    • Reading Data From Multiple Tables 00:10:15
    • Lab: Display Products And Members Using PHP And MySQL 00:01:56
    • Solution: Display Products And Members Using PHP And MySQL 00:10:46
  12. Using Regular Expressions
    • Understanding The Three Regular Expression Command Sets 00:08:28
    • Defining Basic Patterns 00:09:13
    • Using preg_match For Form Validation 00:08:38
    • Finding All Matches With preg_match_all 00:04:17
    • Using preg_replace For Intelligent Search And Replace 00:06:42
    • Lab: Using Regular Expressions To Validate Form Data 00:03:17
    • Solution: Using Regular Expressions To Validate Form Data 00:10:13
  13. Managing Email
    • Sending Mail Using mail 00:10:14
    • Using External Mail Libraries 00:10:49
    • Adding An Attachment To Email 00:07:00
    • Sending Email Using SMTP 00:04:00
    • Lab: Using PHP To Send A Confirmation Email 00:03:11
    • Solution: Using PHP To Send A Confirmation Email 00:04:54
  14. Working With Date And Time
    • Understanding Timestamps 00:06:48
    • Using The date Command 00:04:20
    • Using The DateTime Class 00:07:43
    • Performing Date Arithmetic 00:09:27
    • Lab: Capturing Date Of Birth Using DateTime 00:01:38
    • Solution: Capturing Date Of Birth Using DateTime 00:08:46
  15. Managing Web Operations
    • Reading Inbound Information From Built-In Global Variables 00:05:56
    • Handling Cookies 00:12:41
    • Managing Sessions 00:09:21
    • Setting Headers And Performing Redirection 00:07:43
    • Reading Incoming Header Information 00:06:34
    • Using Output Buffering 00:06:32
    • Deploying An Application To A Website 00:07:53
    • Lab: Using Cookies And Sessions To Implement A Shopping Cart 00:07:32
    • Solution: Using Cookies And Sessions To Implement A Shopping Cart - Part 1 00:07:32
    • Solution: Using Cookies And Sessions To Implement A Shopping Cart - Part 2 00:06:56
  16. Building Web Forms
    • Capturing Form Data 00:16:20
    • Understanding Form Input Elements 00:07:56
    • Working With Select Tags 00:08:11
    • Defining Checkboxes And Radio Buttons 00:09:14
    • Handling File Uploads 00:08:41
    • Securing Form Data: Inbound Filtering 00:06:48
    • Securing Form Data: Form Data Validation 00:09:17
    • Securing Form Data: Output Escaping 00:06:39
    • Lab: Integrating Form Data With The Database 00:02:42
    • Solution: Integrating Form Data With The Database 00:07:02
  17. About The Author
    • About The Author 00:02:03
  18. Oreilly - PHP and MySQL


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss