
Introduction - Course Benefits and All You Get From Enrolling In This Course!
Xampp is the Complete Package which has PHP, Apache, MySQL and many other things. We just need these 3 things to run PHP in our Local machine.
This is An Important Lecture because PHP has an specific Syntax, It's Tags, It's Statement Closing and a lot more.
There a lot of datatypes in PHP. Like string, Integer, Floating points and variables. We must know about all of them.
There are some more Data Type in PHP like Integer, Floating Points. We can check the Data Types by the var_dump() Function.
Variable is a really important data type in PHP or in any programming language. We can store any data in a variable and then we can call them anytime any where by calling the variable name.
To combine to different datatypes, we can concatenate them by using the concatenation operator.
PHP fully supports Arithmetical Operators. We can Multiply, Add, Subtract, divide etc.... any integer in PHP. This thing makes a complete program.
To Assign any value to any variable we have to use the assigning operators.
By Using Increment or Decrement operator, We can Add Incrementation or Decrementation of 1 in any integer or Floating value in PHP.
In this lecture, we'll talk about the basic logic behind conditional statement like if and else which is really important to learn the comparison operators.
These type of operators can compare different values. These are very important in if else statement.
Another lecture on Comparison operators. In this lecture we'll talk about less then and greater then comparison operators.
Logical operators are really important specially when you create a login system. because if you just want to compare two value instead of only one, you have to use the logical operators.
If and else actually the conditional Statement where we can give some options to PHP to choose if the first operation doesn't run.
We can nest the if else inside them as well. This can be very important sometimes.
Here in this lecture, we'll create a small program to define the usage of nesting if else within the if else.
This is another way to make our PHP file more powerfull in desicsion making. We can add multiple conditions by using the elseif statement inside if else.
Switch statement is considered as a part of conditional statements. But it works in a little bit different way. We use Cases in this way.
If you want to print a single line multiple times then you have to use Loops. This is the While Loop.
This is another Loop. This Loop shows the statement at least onetime even the condition goes false.
This is another Loop.Produces the same Result but We have to add the incrementation in the condition if use For Loop
In this Lecture, We'll Learn to make a Simple Function. A Function is actually called Script within a Script. I'll teach you why
We can send some argument with every function as well. This lecture is really interesting about the Functions with arguments.
If you want to get the return of any Function but not in the echo form, you can use the Return statement.
Globe Scope is the way to get access inside the Function with the Outside Variables.
This another Type of Scope. and In this Scope the variable value will be static.
There are a variety for Built-in Functions in PHP. Built-in Function are the actual power of PHP. We'll start learning about the built-in Function from the String Functions. In this Lecture, we'll talk about the Substr and Strpos Function.
In this Lecture, We'll Learn some more String Functions, All of them are really Important for Professional Working.
We've learnt many String Functions but now we're learning some String Function which are special for Preventing HTML coding from PHP.
Array is actually a set of data and records. It's Just Like Variables but we can store multiple data in Array in one time.
This is the Interesting Way to Create an Array. just declare the Variable and Array Function and mention the Associative key or index and Start working.
We can Create Arrays By Using Array Identifier.
This is the most commong type of Array Where we store an associative Key with Every Array Element.
This can be called Nested Arrays as well. We can nest many Array inside a single Array. It's officially called Multidimentional Array.
In this Lecture We'll Use the For Loop to Print Complete Array in One time.
This is a Type of Loop. It doesn't Loop the Same Lines but can Print the Complete Array on the screen.
We can Print Associative Arrays with their Keys by Using some simple methods. Just need to expand coding.
We can Print Multidimentional Arrays by Using Foreach Loop as well.
To Print Complete Array in one time without any special programming, we use print_r Function.
There are many Array Functions to Manage and Get Array data in more perfect way.
In this Lecture, I'll teach you A lot of Array Functions. Some of them are advanced and little bit tricky to understand but not hard. Just focus and try to understand.
Sometimes, We have to perform some mathematical actions with Arrays as well, PHP supports Array mathematical Function too. The other thing we learn in this class is the Multidimentional Array Functions
$_SERVER Super Global Array can give us the Info about Servers. Can show us the Files path, the IP Address and etc...
Server Automatically stores All of the created Variable in an Array Name GLOBALS. If you just want to get access any variable inside the Function which is created outside of the Function then you have to call it with the GLOBALS Super Global Array.
In this Lecture, we'll Talk about the Logic Behind Get and Post Method. For Sending simple data or search result, Use the Get Method, Or If you want to send some secure Data Like Registration form, Login info then use Post method.
We'll talk about the GET Variables in this lecture. We can create that type of Variable in the URL as well.
To Including any php file inside any other PHP file, we use Include or Require Functions. Just like HTML's IFRAME Tag. They both works same but Require is a little strict.
This is the first simple Project in our course. We'll start making a simple form from this class.
Here in this Lecture, We're receiving the Form data.
If you want to send some data through the Form which requires some security then the POST Method is Preferred. By the Post Method. The data doesn't go through the URL but go through the Headers.
Isset Functions Checks if any variable is exists or no.
We can receive the Form receiving Requests on the Same Page. We just simply have to paste the codes on the same Page and have to change the path from the Form tag's action attributes.
This is really important to Pass all the received data from some String Functions to ensure that user didn't send you some kind of attacks.
Here in this Lecture, We'll learn a lot of Validating techniques in PHP
We'll continue the previous Lecture and will Validate some more Elements.
In this Lecture, We'll Apply some Advanced Form Elements. Like Checkboxes, Radio buttons etc...
From this Lecture, We're just starting to Lean Database. We'll use the PHPMyAdmin for the doing everything inside the MySQL Visually.
For Storing and getting Data from the Database, We have to make a Database and some tables on it.
Empty table means Empty Database, Let just put something in the Tables by using the Insert command. We'll do this in PHPMyAdmin.
A Username and Password is really important, Whenever we try to connect with our Database from any PHP file, we have to reference our Username and Password with the Database.
Now, We're able to Retrieve the Data From the Database. We'll retrieve the Data on the Index page.
Retrieving is not only perfect. We have to get the data In the Organized Way. Like in some HTML tags with CSS or other ways.
Bootstrap is the Powerful Front-End Framework with has it's own CSS, jQuery and JavaScript methods. We don't need to create CSS or jQuery now, just Simply call the bootstrap Elements directly.
This is another Form we'll Create Using Bootstrap Techniques. We won't use the Old Form Anymore.
HTML5 has many interesting New Features. The REQUIRED Attribute is one of them. It can validate the Form Client Side without using JavaScript or jQuery.
In this Lecture, We'll learn to Submit a Form in PHP.
This Lecture is the continues the Previous Lecture.
In this lecture, We'll create a Page named detail.php where we'll retrieve the Detailed Info from Database.
Here, we'll program the detail.php Page.
We can Delete any Row of MySQL Table in the webpage by using some techniques. Let just learn them
In this Lecture, we'll Apply the Bootstrap to the Buttons.
SELECT Tag has a lot of values. We have to choose one option from many OPTION Tags which are the part of SELECT Tag. The Selected OPTION Tag's data will come from Database.
We'll be Creating a Complete table with All Countries and will place it on the main PHP File.
Let Just add the Countries table to another PHP pages as well.
In this Lecture, We'll be designing Webpage's header and navbar using Bootstrap.
In this Lecture, We'll Create the Post Area and will use some HTML5 elements and Many Bootstrap Techniques.
Here in this Lecture, We'll Use the HTML5 and Bootstrap again and Create a Form.
Here in the Lecture, We'll Design the Latest Post Area inside the Aside Tag at the Side Bar.
Search Bar is a really important Feature in any Website. We'll Design and Create that in this Lecture.
Let Just Design Footer for Our Project.
Now, I'll guide to Divide and separate home page and Post in this Lecture.
Now, Most of the Designing has been Completed, So Let Just Create Database and Table for this CMS System.
In this Lecture, We'll connect our webpage to Database and Retrieve some Data.
Getting Posts Table's Data on Post Page and will use some GET Variables.
Menu Page is an Important Page of the CMS Sytem. Let just Create and Program throughout this Lecture.
In this Lecture, We'll change the Active class through the help of DataBase.
We already designed the Side Post Area. So Let Just Program it.
This can be really hard to create header and other part of website for each webpage. We'll create a header file and and create a new page and then include that header file to all the website.
In this Lecture, We'll Program the Contact us page and store the Users data in a table.
In this class, We'll Separate the Side bar and save in a new file then include that back.
In this class, We'll Separate the Footer and save in a new file then include that back.
Side Bar requires some Edition. So we'll do this throughout this Lecture.
Search Engine is a really Important Feature in Every Website. We'll work on it throughout this Lecture.
In this Lecture, We'll create the Program to show the searched text on the top of the result.
Here in this Lecture, We'll create a Contact us page.
We'll Create a Registration Page Where new User will be able to register through thier Email Address and other Info.
Registration Page Requires the Programming necessary. So In this Lecture We'll Program the Registration Page.
We'll learn Password Validation and will fix some bugs throughout this Lecture.
Here In this Lecture, we'll Design a new Header for the Admin Panel.
We'll learn to Design Side Navigation area for Admin Panel in this Lecture.
By Using Bootstrap, we can create Beautifull Collapsible menus with some easy techniques.
We'll Design the Top Blocks for the Dashboard or Admin Panel in this Lecture.
We'll create some more Blocks at the top of the Dashboard.
We'll create the Latest Post Aea in the Dashboard where only 5 latest Posts will be allowed to display.
In this Lecture, We'll Design A lot of Area like Comment area, Users Area and Profile Area to the Dashboard.
We'll Create a Form for creating New Posts for our CMS System in this Lecture.
TinyMCE is an smart text editor made on jQuery can help us to make the input area more usable.
We'll Create the Category Page in this Class.
We'll Create a New Page named post_list.php where we'll be able to watch all of our posts.
In this Lecture, We'll Create a Page where We will be able to watch all the Categories.
We'll create the Comment Page in this Lecture.
After watching the Lecture, You'll be able to Create the View Profile page using Bootstrap.
This Class continues the Previous Lecture
We'll make Our Login Panel Active.
This Lecture Continues the previous Lecture.
We need to Secure all the Admin Panel with Login panel. But in this lecture we'll only secure the Dashboard and will secure others in next class.
This Lecture is really important. We'll create a Logout page with its full functionality and I'll guide you that how the Login and Logout actually works.
In this Lecture I'll secure the Complete Admin Panel with Login panel. No one will have the access to go inside without the admins Id or Password.
Here in this Lecure, We'll Divide the Admin and Subscribers Roles. The Subscribers can't have the access to go inside the Admin area however they have an associated ID and password.
In this Lecture, We'll Program the profile Page. and retrieve the data from Database to the Profile Page.
In this Lecture, We'll Program the New Post page and the admin will have the authority to use the Form to create new Posts
Here in this Lecture, We'll create an Image uploader and get the Post Data in PHP.
This is the last lecture about inserting new Post Form.
We'll add some Limitation the the Index Page for getting only Limited data.
Pagination is a new Thing in this whole Course. We didn't Learn anything about Pagination yet. But it's really Important to learn.
In this lecture We'll Retrieve Data from the Database to the Post List Page.
In this Lecture, We'll Join tables and get a Combined Result.
In this Lecture, We'll make our Posts to be changable.
In this Lecture, We'll Program the View and Delete Button From Post list page and make them workable.
Here in this Lecture, We'll create a Page where we will be able to Edit any post.
In this Lecture, We'll create A Page Where we will be able to Create a New category.
Retrieving the Category List from the database and creating the Button to Delete any Category.
Creating a Page Where We will be able to Edit any Category.
In this Lecture, We'll do some Modifications our Category Name. This Lecture is Really Important to Understand because Modification can be a toughest part in Web development.
In this Lecture, We'll Program the Whole Dashboard.
This is the Last Lecture where we'll setup the complete Dashboard with complete Programming
Complete Code of CMS System and Admin Panel
A special bonus for my Udemy studnents who finish this course!
This is another interesting technique. We'll be retrieving Data from Database in our HTML Form with some easy ways.
Welcome To The Complete PHP Course With Booststrap3 CMS System Admin Panel
Student Success Testimonials
7 days ago
Excellent course deserves more than 5 stars for the effort these 2 instructors have taken to deliver a polished excellent course Actually coding a blog from scratch in php without using wordpress by manually programming in html css php bootstrap Real life project Responsible instructors they add new lectures when students suggest good ideas Thank you so much Joe and Shahzaib Bryce S Dyra
9 days ago
This course meets all that I was looking for Very comprehensive and useful for anyone looking for PHP development Bootstrap and more I highly recommend this course to anyone beginner or more advanced students Great for all A big thank you to both instructors for creating this course for all of us
Watch the promo video to see How You Can Begin Using PHP With Booststrap3 CMS System Admin Panel
This Course is MASSIVE You receive over 20 hours of video content 125 lectures
Join Over 950,000 Students Who Have Enrolled In My Udemy Courses This Year
7,500 Five Star Reviews on our courses prove Students Who Enrolling Are Getting Real Results
Then this course is for you Click Take This Course Now For Instant LifeTime Access
This Course is for Everyone Newbies Beginners and Professionals This Course will provide you the Basic Understanding of the PHP to the Advance Techniques to Create beautiful Applications After watching this complete course You will find how easy is to make a Complete Personal CMS System with an Advanced Admin Panel Using Bootstrap 3
With the right mindset understanding and application of the teachings in this course you will instantly begin to move towards Using PHP With Booststrap3 CMS System Admin Panel
When I learn something new I add it to the course at no additional cost to you This is a course that will continue to add more and more to every aspect of your life
In addition to the Udemy 30day money back guarantee you have my personal guarantee that you will love what you learn in this course
What I cant do in this Course
I cant guarantee your success this course does take work on your part But You Can Do It
I am also not responsible for your actions You are responsible for 100 of the decisions and actions you make while using this course
This course will not remain this price forever Its time to take action
Click the take this course button at the top right now
every hour you delay is costing you money
See you in the course
Sincerely
Joe Parys Shahzaib Kamal