Is there a way to automatically create a table with a tablename that is taken from a field the user has previously entered (i.e. username).
I have tried :
$sql = 'CREATE TABLE $username (....)'; and
$sql = 'CREATE TABLE '$username' (....)';
but neither work.
Any ideas??
Thanks
Yarni