In php5 if you have a class that basically abstracts a data table plus some other stuff for example a Music song
GetInstance($id); or to use a constructor? $song = new
Song($id); or something else?
$song = new Song(); $song-loadDetails($id); ?
I didn't think you could do $song = new Song