Skip to content

Instantly share code, notes, and snippets.

View LeviSchuck's full-sized avatar

Levi LeviSchuck

View GitHub Profile
@LeviSchuck
LeviSchuck / main.php
Created March 14, 2011 02:06
main.php of PHP OOP Tutorial 2
<?php
//Object Oriented Programming in PHP Intro #2
class bank {
private $name = '';
public function __construct($name) {
echo "Starting the bank: $name.";
$this->name=$name;
}
public function iHaveThisMuchMoney(){
$sum = 0;