Skip to content

[DesireCourse Com] Udemy - Write PHP Like a Pro Build a PHP MVC Framework From Scratch

Unverified source. This magnet is from an unverified source. The content may be unsafe or mislabeled. Proceed with caution.
Title: UdemyGroup: NOGRPSource: Udemy
Info Hash
31D58A6951F745DDFE1728B4D06EBD28C97DC6C8
Source
Unverified
Total Size
251.64 MB
Total Files
100
Seeders
1
Leechers
0
Health
1.00
Score
2
Type
Bookware

File List

FileSize
01 Introduction_ MVC concepts and development environment setup/001 Introduction-subtitle-en.srt5.29 KB
01 Introduction_ MVC concepts and development environment setup/001 Introduction.mp43.66 MB
01 Introduction_ MVC concepts and development environment setup/002 The problem with writing web applications_ how NOT to structure your code.mp46.3 MB
01 Introduction_ MVC concepts and development environment setup/003 The MVC pattern_ What it is and how it can help you write better code.mp44.81 MB
01 Introduction_ MVC concepts and development environment setup/004 Install a web server_ database server and PHP on your computer-subtitle-en.srt4.26 KB
01 Introduction_ MVC concepts and development environment setup/004 Install a web server_ database server and PHP on your computer.mp43.98 MB
01 Introduction_ MVC concepts and development environment setup/004 source-code.zip190 B
01 Introduction_ MVC concepts and development environment setup/005 Start writing the framework_ Create the folders and configure the web server.mp45.77 MB
01 Introduction_ MVC concepts and development environment setup/005 source-code.zip1.35 KB
01 Introduction_ MVC concepts and development environment setup/006 Addendum_ Additional configuration for AMPPS on Windows.html1.93 KB
02 Routing_ how URLs are processed in an MVC framework/007 Create a central entry point to the framework_ the front controller-subtitle-en.srt3.71 KB
02 Routing_ how URLs are processed in an MVC framework/007 Create a central entry point to the framework_ the front controller.mp44.12 MB
02 Routing_ how URLs are processed in an MVC framework/007 source-code.zip1.41 KB
02 Routing_ how URLs are processed in an MVC framework/008 Configure the web server to have pretty URLs-subtitle-en.srt3.42 KB
02 Routing_ how URLs are processed in an MVC framework/008 Configure the web server to have pretty URLs.mp43.02 MB
02 Routing_ how URLs are processed in an MVC framework/008 IIS-configuration.zip425 B
02 Routing_ how URLs are processed in an MVC framework/009 Addendum_ Possible additional configuration required for the Apache web server.html2.66 KB
02 Routing_ how URLs are processed in an MVC framework/009 htaccess.txt253 B
02 Routing_ how URLs are processed in an MVC framework/010 Create and require (not include) the router class-subtitle-en.srt3.78 KB
02 Routing_ how URLs are processed in an MVC framework/010 Create and require (not include) the router class.mp43.25 MB
02 Routing_ how URLs are processed in an MVC framework/010 source-code.zip1.99 KB
02 Routing_ how URLs are processed in an MVC framework/011 Create the routing table in the router_ and add some routes-subtitle-en.srt2.97 KB
02 Routing_ how URLs are processed in an MVC framework/011 Create the routing table in the router_ and add some routes.mp42.97 MB
02 Routing_ how URLs are processed in an MVC framework/011 source-code.zip2.33 KB
02 Routing_ how URLs are processed in an MVC framework/012 Match the requested route to the list of routes in the routing table-subtitle-en.srt4.17 KB
02 Routing_ how URLs are processed in an MVC framework/012 Match the requested route to the list of routes in the routing table.mp44.54 MB
02 Routing_ how URLs are processed in an MVC framework/012 source-code.zip2.56 KB
03 Advanced routing_ add simpler but more powerful routes/013 Introduction to advanced routing using route variables-subtitle-en.srt2.04 KB
03 Advanced routing_ add simpler but more powerful routes/013 Introduction to advanced routing using route variables.mp41.93 MB
03 Advanced routing_ add simpler but more powerful routes/014 How to do complex string comparisons_ an introduction to regular expressions.mp45.74 MB
03 Advanced routing_ add simpler but more powerful routes/015 Using special characters in regular expressions_ advanced pattern matching.mp43.97 MB
03 Advanced routing_ add simpler but more powerful routes/016 Write even more powerful regular expressions_ use character sets and ranges.mp43.06 MB
03 Advanced routing_ add simpler but more powerful routes/017 Extract parts of strings using regular expression capture groups-subtitle-en.srt3.48 KB
03 Advanced routing_ add simpler but more powerful routes/017 Extract parts of strings using regular expression capture groups.mp43.87 MB
03 Advanced routing_ add simpler but more powerful routes/018 Get the controller and action from a URL with a fixed structure-subtitle-en.srt7.31 KB
03 Advanced routing_ add simpler but more powerful routes/018 Get the controller and action from a URL with a fixed structure.mp46.44 MB
03 Advanced routing_ add simpler but more powerful routes/018 source-code.zip2.72 KB
03 Advanced routing_ add simpler but more powerful routes/019 Replace parts of strings using regular expressions-subtitle-en.srt3.55 KB
03 Advanced routing_ add simpler but more powerful routes/019 Replace parts of strings using regular expressions.mp43.61 MB
03 Advanced routing_ add simpler but more powerful routes/020 Get the controller and action from a URL with a variable structure-subtitle-en.srt7.05 KB
03 Advanced routing_ add simpler but more powerful routes/020 Get the controller and action from a URL with a variable structure.mp48.72 MB
03 Advanced routing_ add simpler but more powerful routes/020 source-code.zip2.91 KB
03 Advanced routing_ add simpler but more powerful routes/021 Add custom variables of any format to the URL-subtitle-en.srt3.81 KB
03 Advanced routing_ add simpler but more powerful routes/021 Add custom variables of any format to the URL.mp44.27 MB
03 Advanced routing_ add simpler but more powerful routes/021 source-code.zip2.84 KB
03 Advanced routing_ add simpler but more powerful routes/external_links.txt54 B
04 Controllers and actions/022 Controllers and actions_ an introduction-subtitle-en.srt1.76 KB
04 Controllers and actions/022 Controllers and actions_ an introduction.mp42.01 MB
04 Controllers and actions/023 How to create objects and run methods dynamically-subtitle-en.srt2.24 KB
04 Controllers and actions/023 How to create objects and run methods dynamically.mp42.15 MB
04 Controllers and actions/024 Dispatch the route_ create the controller object and run the action method-subtitle-en.srt6.05 KB
04 Controllers and actions/024 Dispatch the route_ create the controller object and run the action method.mp48.51 MB
04 Controllers and actions/024 source-code.zip3.61 KB
04 Controllers and actions/025 How to better organise your classes by using namespaces-subtitle-en.srt4.65 KB
04 Controllers and actions/025 How to better organise your classes by using namespaces.mp45.27 MB
04 Controllers and actions/026 Class autoloading_ load classes automatically without having to require them-subtitle-en.srt3.78 KB
04 Controllers and actions/026 Class autoloading_ load classes automatically without having to require them.mp44.74 MB
04 Controllers and actions/027 Load classes automatically_ add namespaces and an autoload function-subtitle-en.srt3.68 KB
04 Controllers and actions/027 Load classes automatically_ add namespaces and an autoload function.mp45.01 MB
04 Controllers and actions/027 source-code.zip3.97 KB
04 Controllers and actions/028 Remove query string variables from the URL before matching to a route-subtitle-en.srt3.04 KB
04 Controllers and actions/028 Remove query string variables from the URL before matching to a route.mp44.13 MB
04 Controllers and actions/028 source-code.zip4.43 KB
04 Controllers and actions/029 Pass route parameters from the route to all controllers-subtitle-en.srt3.16 KB
04 Controllers and actions/029 Pass route parameters from the route to all controllers.mp43.92 MB
04 Controllers and actions/029 source-code.zip4.89 KB
04 Controllers and actions/030 The __call magic method_ how to call inaccessible methods in a class-subtitle-en.srt3.12 KB
04 Controllers and actions/030 The __call magic method_ how to call inaccessible methods in a class.mp43.73 MB
04 Controllers and actions/031 Action filters_ call a method before and after every action in a controller-subtitle-en.srt6.05 KB
04 Controllers and actions/031 Action filters_ call a method before and after every action in a controller.mp46.62 MB
04 Controllers and actions/031 source-code.zip5.28 KB
04 Controllers and actions/032 Addendum_ fix for a potential security bug introduced with the action filters.html7.8 KB
04 Controllers and actions/032 source-code.zip4.57 KB
04 Controllers and actions/033 Organise controllers in subdirectories_ add a route namespace option-subtitle-en.srt3.14 KB
04 Controllers and actions/033 Organise controllers in subdirectories_ add a route namespace option.mp44.74 MB
04 Controllers and actions/033 source-code.zip6.02 KB
05 Views/034 Views_ an introduction-subtitle-en.srt1.07 KB
05 Views/034 Views_ an introduction.mp41.07 MB
05 Views/035 Display a view_ create a class to render views and use it in a controller-subtitle-en.srt2.71 KB
05 Views/035 Display a view_ create a class to render views and use it in a controller.mp43.16 MB
05 Views/035 source-code.zip6.9 KB
05 Views/036 Output escaping_ what it is_ why do it_ and how and when to do it-subtitle-en.srt5.05 KB
05 Views/036 Output escaping_ what it is_ why do it_ and how and when to do it.mp45.66 MB
05 Views/036 source-code.zip497 B
05 Views/037 Pass data from the controller to the view-subtitle-en.srt2.45 KB
05 Views/037 Pass data from the controller to the view.mp42.59 MB
05 Views/037 source-code.zip7.07 KB
05 Views/038 Templating engines_ what they are and how they can improve your PHP code-subtitle-en.srt3.98 KB
05 Views/038 Templating engines_ what they are and how they can improve your PHP code.mp44.56 MB
05 Views/039 Make views easier to create and maintain_ add a template engine-subtitle-en.srt2.66 KB
05 Views/039 Make views easier to create and maintain_ add a template engine.mp44.29 MB
05 Views/039 source-code.zip500.57 KB
05 Views/040 Addendum_ Changes in Twig 2_0.html1.45 KB
05 Views/041 Addendum_ How to easily fix a potential exception when rendering a Twig template.html2.74 KB
05 Views/041 source-code.zip500.59 KB
05 Views/042 Remove repetition in the view templates_ add a base template to inherit from-subtitle-en.srt2.74 KB
05 Views/042 Remove repetition in the view templates_ add a base template to inherit from.mp43.13 MB
05 Views/042 source-code.zip501.32 KB
05 Views/external_links.txt97 B
06 Manage code using Composer/043 Install third-party PHP code libraries automatically using Composer-subtitle-en.srt4.28 KB

Trackers

No trackers found.