Programming in Php

How To : Use getters and setters when programming in PHP

In this clip, you'll learn how to use getters and setters when coding in PHP. Whether you're new to the PHP: Hypertext Preprocessor scripting language or are a seasoned web developer merely looking to improve your chops, you're sure to find benefit in this free video programmi ...more

How To : Use getters and setters in your PHP programming

Learn how to properly use and implement getters and setters in your PHP programming by following along with this informative video. By constructing a very simple program on his computer, JREAMdesign demonstrates how getters and setters work within PHP programming.

How To : Use a singleton pattern in PHP programming

This PHP newbie video with teach you what a Singleton Pattern is and how to use it in your PHP programming. PHP OOP Singleton is great for a database connection when you only want one consistent connection in your application. So, to prevent wasting space accidentally by calli ...more

How To : Use an SPL (Standard PHP Library) in PHP programming

This video presents a basic introduction to SPL (Standard PHP Library) in PHP programming. You'll be dealing with itertators, which will allow you to loop through operations. This is a basic intro, but gives you a good idea of what you'll be dealing with.

How To : Create a simple login script with PHP programming

In this tutorial you'll learn about a simple PHP login script that serves to check your MySQL database against a user/password. The code in this video is a quick and dirty procedural code, but it's enough to get you going so you can try it out yourself.

How To : Utilize the MVC Pattern in PHP programming

The "Model View Controller" pattern, or MVC, is a paradigm of programmatically organizing an application into three parts: the Model, the View and the Controller. This video tutorial from JREAMdesign summarizes the purposes of the various components and how they interrelate wi ...more

How To : Use encapsulation with your PHP OOP programming

When you're doing PHP programming, you'll likely want to have some regions that are strictly off limits to the user and should be accessible only to the programmer. This is when you'll want to use encapsulation to create an area within your coding that's for your eyes only.

How To : Chain methods in your PHP object programming

Chaining methods in PHP can be simple and straightforward if you follow along with this informative video tutorial on PHP OOP methods from JREAMdesign. The key action is to return the object after running the function so that you can run another function to the object directly ...more

How To : Use class inheritance with PHP OOP programming

This tutorial for PHP beginners introduces the viewer to the concept of class inheritance. As your coding career takes off, you'll need to know as many ways to work efficently and code with speed to save time and money. Check it!

How To : Use Static Classes in PHP OOP programming

When coding with PHP OOP you may encounter the need for static methods or static classes. This tutorial will give you an overview of how to use these functions and when you should use them at all. Get coding people!

How To : Program a PHP forum

This video covers creating and programming a a PHP-based web forum. Topics include basic layout, login and logout, Admin start, creating categories and subcategories, creating topics, and more... Part 1 of 9 - How to Program a PHP forum. Part 2 of 9 - How to Program a PHP for ...more

How To : Program a user registration with PHP

How to program a user registration using php, sql and phpmyadmin. Part 1 of 3 - How to Program a user registration with PHP. Part 2 of 3 - How to Program a user registration with PHP. Part 3 of 3 - How to Program a user registration with PHP.

How To : Program in PHP

Learn how to install PHP and some of the basics of PHP programming including some basic commands including conditionals and booleans for creating scripts and command line interfaces.

How To : Program faster with some PHP speed tips

If you're looking to shave a few milliseconds off the Zend Engine's work load, check out this tutorial for some PHP programming speed tips. This efficency will pay off when you have tons of traffic to your site and save you valuable server resources.

How To : Your Personal Program [ NOTEPAD++] Written in PHP

Hello friends, I'm new in world of web developing. so, i decided to code my own program to save and read my personal notes and which is also secure, so i dont need to worry :) if you have any suggestions please fell free to tell :) 1 Login UI first we need to login 2 MAIN Pro ...more

How To : Protect Your PHP Website from SQL Injection Hacks

As a web developer, I often read articles about hackers (from the lowly to the knowledgeable) infiltrating websites via the dreaded 'SQL Injection' method and completely taking control, changing, gaining access, or destroying the owner's data. As a fellow web developer, I'm su ...more

How To : Control your computer with a webcam & Wii remote

This is a Tinkernut video cast. This video shows you how to control your computer (mainly games and miscellaneous programs such as Google Earth) using your webcam. Use a wii remote to send IR commands to your computer. You will need the software found here: http://www.camspa ...more

How To : Setup PHP and MySQL for your Mac Mini server

How to Use Your Mac as a Server: Turn your Mac Mini into a server! Yes, that's right, with a little know-how and a little spunk, you can turn an inexpensive Mac Mini computer into a server to provide services over you network. You won't even need the Mac OS X Server, just the ...more

How To : Program with Python

Welcome to Google's Python Class – a seven-segment, two-part free virtual class for people with a little bit of programming experience who want to learn Python. The class includes written materials, lecture videos, and lots of code exercises to practice Python coding. The firs ...more

How To : Use CakePHP to create and develop websites

CakePHP is the Ruby on Rails of the PHP world, an open-source web application framework that allows users to create really cool websites and software without spending money on expensive programs. This extensive video series will teach you everything you need to know about work ...more

How To : Get free music online

A quick video showing how to get free music online. May take a couple minutes per song. To prove quality I used the song i download in the video as background music. "I Wish" by Skee-Lo You could download the following free programs. or download iExtractMP3 from the link belo ...more

How To : Understand server-side vs. client-side programming

This video helps you to understand the differences between programming languages like PHP and Java Script. See how to understand and be able to use server and client based programming languages. This is VERY important to know before you start developing websites. Understand se ...more

How To : Use variables when writing a program in Java

Java works a little differently than languages like Python or PHP when it comes to working with variables. This tutorial shows you what the difference is, how you can define your variables and the easiest ways to work with them when writing programs in Java.

How To : Connect to a database & add data in PHP & MYSQL

MySQL is a database for serving data on the web. This video teaches viewers how to connect to a database and add data in PHP & MySQL. PHPMyAdmin is an interface that allows you to interact with MySQL more easily. Use the form in the program to create a database; choose the nam ...more

How To : Transfer programs to your TI-84+ and TI-84+ Silver

Wouldn't your TI calculator be way cooler with some sweet programs like Nintendo or Tetris? This is a short tutorial on extracting the files from a ZIP archive, and transferring them to your calculator. For a more in depth tutorial on transferring, see our text tutorial: htt ...more

How To : Create an MP3 player playlist with PHP

In this clip, you'll learn how to create dynamic playlists for directories of MP3s with PHP. Whether you're new to the PHP: Hypertext Preprocessor scripting language or are a seasoned web developer merely looking to improve your chops, you're sure to find benefit in this free ...more

How To : Render dynamic XML files with a PHP loops

In this clip, you'll learn how to render dynamic XML files with PHP loops. Whether you're new to the PHP: Hypertext Preprocessor scripting language or are a seasoned web developer merely looking to improve your chops, you're sure to find benefit in this free video programming ...more

How To : Convert MySQL timestamps to the "ago" format

In this clip, you'll learn how to adjust timestamps from a MySQL database to the ago format (e.g., minutes ago, hours ago or days ago). Whether you're new to the PHP: Hypertext Preprocessor scripting language or are a seasoned web developer merely looking to improve your chops ...more

Prev Page
  • Hot
  • Latest