Most people achieve this by using a Wildcard DNS Record, this gives the appearence of creating subdomains instantly.
Once you've got a wildcard DNS setup like this:
*.example.com A 77.75.105.197
You need to tell Apache you want all sub domains to be caught by a virtual host, you can do this with ServerAlias:
ServerAlias *.example.com
In PHP you can then look at $_SERVER["SERVER_NAME"] to figure out what subdomain has been used to access the virtual host, you can then have subdomain specific code/content.
