Archive for the ‘PHP Videos’ Category

PHP Misc. Training Video – Sessions Part 1

Monday, August 30th, 2010

This is part 1of a 3 part video tutorial series, where Stef teaches you about PHP sessions, one of the most important things in the PHP language! From our PHP Misc. section of the Killersites University!

To find more courses on PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP Misc. Training Video – Creating Custom PHP Functions Part 2

Thursday, August 26th, 2010

We continue to take a look at creating your own custom PHP function, in part 2 of a 3 part video tutorial series from our PHP Misc. section of the Killersites University!

To find more courses on PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP Misc. Training Video – Creating Custom PHP Functions Part 1

Monday, August 23rd, 2010

Here, Stef shows you how to create your own custom PHP function, in part 1 of a 3 part video tutorial series from our PHP Misc. section of the Killersites University!

To find more courses on PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP Misc. Training Video – Functions Part 3

Thursday, August 19th, 2010

This is part 3 of a series of video tutorials on PHP functions, from our Misc. PHP section of the Killersites University!

To find more courses on PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP Shopping Cart Video Tutorial Updates

Wednesday, August 18th, 2010

We just updated our shopping cart tutorial – check it out:

I just added 3 new screencasts to the KillerSites University under the PHP > PHP Shopping Cart course (about 45 minutes of content.)

These videos answer a common question: how to change the code created in the course to use a MySQL database rather than an XML file to store product information. For small stores, using an XML file makes sense, but if you intend to expand and there is the potential that you’ll have a large number of products to sell, editing an XML file every time may be a bit unwieldy.

These videos cover how to change existing code only. With a MySQL database in place, however, you could add on to the functionality by adding a password protected administrative section that allows you to add/edit/delete products from the database. These videos don’t cover that (yet, at least), but if you watch the series on PHP CRUD with MySQLi and the series I did on creating a basic user authentication system with PHP, that should help get you started.

Let me know if there are any other features you’d like to see added to the PHP Shopping Cart course, and I’ll see what I can do. Hope you find the videos useful. =)

Ben

These videos can be found in the Killersites Universities’ video library.

Thanks,

Stefan Mischook

PHP Misc. Training Video – Functions Part 2

Monday, August 16th, 2010

This is part 2 of a 3 part series of video tutorials on PHP functions, from our Misc. PHP section of the Killersites University!

To find more courses on PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

Advanced PHP Video Tutorial – Dynamic Property Assignment

Friday, August 13th, 2010

In this video tutorial we look at how to clean up your project, consolidate and refine persistence, from our series Advanced PHP

To find more courses on PHP and Advanced PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

Advanced PHP Video Tutorial – Passing Parameters Around an MVC Application

Tuesday, August 10th, 2010

In this video tutorial from our Advanced PHP series, we look at how to write a very simple MVC (Model,View,Controller) framework from scratch using PHP 5.3, soon to be PHP 6

To find more courses on PHP and Advanced PHP, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP & Javascript Video Tutorial – Form Validation part 4

Saturday, August 7th, 2010

We continue our look with part 4 of our video tutorial series on Form Validation.

To find more courses on PHP & Javascript, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP & Javascript Video Tutorial – Form Validation part 2

Wednesday, August 4th, 2010

We continue our look with part 2 of our video tutorial series on Form Validation.

To find more courses on PHP & Javascript, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP & Javascript Video Tutorial – Form Validation part 1

Sunday, August 1st, 2010

In this series of video tutorials, we look at Javascript and PHP based form validation by discussing what form validation is, why you should use it and then build an example using PHP and JQuery.

To find more courses on PHP & Javascript, check out our Killersites University!
Note that all of our videos are in a higher quality when purchased or found in the Killersites University!

Thanks,

Jody
killersites.com

PHP CRUD Video Course – Part 2

Wednesday, June 2nd, 2010

Hi,

In our continued aim to transform you web guys into full-fledged web programmers, we have yet another cool video tutorial series … this time on basic PHP and MySQL interaction, something the nerds refer to as CRUD.

Check out the second video from the screencast series:

More free samples from this course coming soon.

Stefan Mischook
www.killerphp.com

PHP CRUD Video Course – Introduction.

Tuesday, June 1st, 2010

Hi,

In our continued aim to transform you web guys into full-fledged web programmers, we have yet another cool video tutorial series … this time on basic PHP and MySQL interaction, something the nerds refer to as CRUD.

Check out the first video from the screencast series:

More free samples from this course coming soon.

Stefan Mischook
www.killerphp.com

New Video Tutorial: Build a Login System using PHP and MVC

Tuesday, June 1st, 2010

Hi,

We just released a new screencast on building a login system with PHP. Our official release notes:

This six part video series explains how to create a simple PHP login system using PHP, MySQLi, PHP sessions and a variation of the MVC pattern. This system allows authorized members to login, access a member’s only section, and log out, as well as showing how to create a form that adds new members to the database.

This video course, along with hundreds of other videos on PHP and web design, can be found in the Killersites University … our video tutorial subscription service.

I will be releasing free sample videos from this course very soon.

Stefan Mischook
www.killerphp.com

So in a nutshell, what is the difference between PHP 5 and CRUD?

Monday, May 31st, 2010

Hi,

Sometimes I post questions that are put to me by people. This is a beginners question, so you experienced nerds will want to move on. Nonetheless, I am sure there are a few debutant PHP programmers who will find this useful.

The question:

So in a nutshell, what is the difference between PHP 5 and CRUD?

PHP5 is just a version of PHP. Whereas CRUD is short for a series of PHP+MySQL operations/interactions:

- Create
- Read
- Update
- Delete

…These are the core operations that can be preformed on a database. CRUD is so important in fact, that we just released a mini video series on PHP CRUD that can now be found in the Killersites University … our video tutorial subscription service.

Stefan.

How to build a log in system with PHP.

Wednesday, May 19th, 2010

Hi,

I just wanted to announce that we will be releasing a PHP log in system video tutorial within a few days.

Like all our videos, as you learn to build the project at hand, you will be secretly taught reusable PHP techniques and even some dreaded PHP nerd theory! Don’t worry though, the nerd theory will be woven into the videos, so you won’t even notice it seeping into your brain.

Many of the videos will be released on this blog for free, but the whole course (and source files) will only be available to Killersites University subscribers or as part of our upcoming complete web developer training package.

… Yes, a shameless plug but nerds need to eat too (and play video games) so we have so charge you guys a little sometimes!

Follow this blog to keep in touch.

Stefan Mischook
www.killerphp.com

PHP Pagination Video Tutorial

Wednesday, May 12th, 2010

PHP videos

Hi,

We just released a couple of new videos at Killersites University:

These two videos show how to modify the view.php file we created earlier in Part 1 of the ‘CRUD Basics with MySQLi & PHP‘ series to add basic pagination. This functionality is often required for large data sets, providing a better user experience by splitting up a long list of records into multiple pages. These videos briefly introduce the MySQLi data_seek() function, used to pull specific records from the database.

Free samples will be coming out soon.

Stefan Mischook
www.killerphp.com

New PHP CRUD Video Tutorial

Wednesday, May 12th, 2010

PHP videos
Hi,

In our ongoing effort to provide top quality screencasts authored by working web designers and web programmers (that means practical training) … we just released a new set of videos on PHP CRUD.

The official summary:

This is a six part series that covers how to create a basic application that creates, reads, updates and deletes records (often called CRUD) from a MySQL database using MySQLi. MySQLi helps prevent SQL injection, a common security issue. Understanding how to use a MySQL database and work with database records is an essential skill for beginning web developers.

You can find these videos in our growing collection of video training tutorials at Killersites University.

I will be releasing several free samples from this (and other series) as soon as I can find the time – busy these days watching TV.

:)

We have several other PHP and programming related video in Killersites University .. I just haven’t had time to blog about them. More to come soon.

Stefan Mischook
www.killersites.com

New Video: MySQL and SQL Joins Part 1

Wednesday, March 10th, 2010

Database Image

Hi,

I just released the first of many videos on more advanced SQL and MySQL than we’ve covered before. From the courses description:

This course teaches you the very basics of MySQL, SQL then shows you how to use PHP with them. Once you have that under your belt, we jump into more advanced SQL and MySQL.

In this free sample video, we prepare our environment (MySQL) so we can start working with on SQL join queries:

There will be several other sample videos to come, but if you want them all NOW, (at the risk of being a shameless self promoter!) you can pick the entire 4hrs of the MySQL and SQL course in the killer video store.

Thanks,

Stefan Mischook
www.killerphp.com

New Screencasts: Use PHP, jQuery & AJAX to Load XML Data

Thursday, March 4th, 2010

video-icon

Hi,

I wanted to announce that we released a two part video screencast tutorial in our video tutorial subscription service on using PHP, jQuery and AJAX to load XML data.

… We built this script for our own sites, so that we could grab RSS feeds from our forums and display them on various home pages.

Learn not just one cool programming technique, but two, three or more!

This is a cool video tutorial, because it shows you not only how to use jQuery, but you also get to see how to combine jQuery with PHP to do something pretty useful.

For example, with what you learn in this video tutorial, you could create a news aggregator page that grabs RSS feeds from your favorite news sites … no need to surf around.

The source files are included with the video subscription service. You can find it in the Misc. PHP videos section of the library.

I may post part 1 here within the next few days – still thinking about it.

:)

Stefan Mischook (Nerd supreme around here!)
www.killerphp.com

Top of page  go to top of page