Videos tagged with KillerPHP
The 'delete' command allows you delete information in the database. Like all the other commands you can tweak the command so as to target specific data in the database. Anyway, we will look at that a little later ...
KillerPHP: SQL UPDATE statement
The 'update' command allows you to update records/information already in the database.
KillerPHP: SQL SELECT statement
The 'select' command allows you to select (pull out) specific pieces of information from a database.
KillerPHP: Introduction to SQL
SQL is short for: Structured Query Language SQL is the language of relational databases ... databases like MySQL, Oracle, MS SQL Server and many others. SQL allows you to 'talk' to a relational database - that means being able to manage the data being stored in the database. SQL is a computer language that has been around since the 1970's and it is now a standard that is used in every relationa...
KillerPHP: SQL INSERT statement
One great thing about SQL is that the commands/statements are self describing. So in this case, the 'insert' command allows you to insert new data into a database.
KillerPHP: phpMyAdmin Basics - Part 2
This is part 2, where as we learn about phpMyAdmin, we also learn basic database and MySQL theory. Not so much to put you to sleep, but only enough so that you can move forward in your PHP journey.
KillerPHP: phpMyAdmin Basics - Part 1
This is the first of a two part video where I introduce you to one of the most widely used programs that allows you to configure and use MySQL server - phpMyAdmin. phpMyAdmin is a web based program (runs in a web browser) and is built with PHP. The fact that phpMyAdmin uses PHP behind the scenes, should give you an idea of how powerful PHP is with regards to working with MySQL.
KillerPHP: Introduction to MySQL and phpMyAdmin
These are just the first of many planned video tutorials on the multithreaded, multi-user SQL database management system MySQL. These particular videos require a little more background knowledge from the viewer, in terms of overall php development experience. In the following video I go over some basic MySQL theory.
KillerPHP #16: Processing HTML Forms with PHP - Part 3
PHP makes processig forms easy. In the following videos we leverage our understanding of PHP arrays to easy collect user submitted form data.
KillerPHP #15: Processing HTML Forms with PHP - Part 2
PHP makes processig forms easy. In the following videos we leverage our understanding of PHP arrays to easy collect user submitted form data.