Eugene Posted April 11, 2006 Share Posted April 11, 2006 Creating a main table, and then a table inside the main table. Quote Link to comment https://forums.phpfreaks.com/topic/7153-is-this-possible/ Share on other sites More sharing options...
AndyB Posted April 11, 2006 Share Posted April 11, 2006 No. Why? Maybe I don't even understand the question. Perhaps enum fields are what you want. Maybe we need more detail about specifically what you are trying to accomplish? Quote Link to comment https://forums.phpfreaks.com/topic/7153-is-this-possible/#findComment-26026 Share on other sites More sharing options...
Eugene Posted April 11, 2006 Author Share Posted April 11, 2006 Ok, someone registers and a table is created in their name.They have now access to a panel which they can insert information etc...Can that information be inserted into a table inside their name? Quote Link to comment https://forums.phpfreaks.com/topic/7153-is-this-possible/#findComment-26029 Share on other sites More sharing options...
wickning1 Posted April 11, 2006 Share Posted April 11, 2006 It's a really bad idea to create new tables as a result of user actions. You should carefully rethink your design.What does your site do, what kind of information are users able to store? Quote Link to comment https://forums.phpfreaks.com/topic/7153-is-this-possible/#findComment-26032 Share on other sites More sharing options...
fenway Posted April 12, 2006 Share Posted April 12, 2006 Or, you could just make a normal table, add whatever it is you're INSERTing, and tack on a user_uid FK and only show them their records; views in 5.0 make these even easier, because then you actually can "create" a view by username! Why make this unnecessarily complicated? And yes, wickning1 is right -- never dynamically create databases/tables/columns. Quote Link to comment https://forums.phpfreaks.com/topic/7153-is-this-possible/#findComment-26074 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.