Here\'s what I want to do:
$clsName = substr(md5(rand()),0,10); //generate a random name $cls = new $clsName(); //create a new instance function __autoload(
Using eval() is really a bad idea. It opens a large security hole. Just don't use it!