<?php class SimpleClass { function SimpleClass($param) { echo "Created a new instance of SimpleClass!"; } } $myinstance = new SimpleClass; ?>