raptor30506090 Posted April 18, 2012 Share Posted April 18, 2012 Hi am hopping some one can help im just trying to make a table for options to display size and price may be upto 10 options can any one tell me the best way to do this Any help would be great Quote Link to comment Share on other sites More sharing options...
AyKay47 Posted April 18, 2012 Share Posted April 18, 2012 Can you give an example, do you have any code started? Quote Link to comment Share on other sites More sharing options...
raptor30506090 Posted April 18, 2012 Author Share Posted April 18, 2012 This is what i have so far its the mysql im a bit stuck on option 1: <input name="option1" type="text"> Price: <input name="price" type="text"><br><br> option 2: <input name="option1" type="text"> Price: <input name="price" type="text"><br><br> option 3: <input name="option1" type="text"> Price: <input name="price" type="text"><br><br> option 4: <input name="option1" type="text"> Price: <input name="price" type="text"><br><br> option 5: <input name="option1" type="text"> Price: <input name="price" type="text"><br> Quote Link to comment Share on other sites More sharing options...
AyKay47 Posted April 18, 2012 Share Posted April 18, 2012 Since these are in one form, I recommend either having the inputs in array format or assigning them unique names, unless the user is only allowed to fill out 1. eg option 1: <input name="option1" type="text"> Price: <input name="price1" type="text"><br><br> option 2: <input name="option2" type="text"> Price: <input name="price2" type="text"><br><br> option 3: <input name="option3" type="text"> Price: <input name="price3" type="text"><br><br> option 4: <input name="option4" type="text"> Price: <input name="price4" type="text"><br><br> option 5: <input name="option5" type="text"> Price: <input name="price5" type="text"><br> But as to your mysql question, you want to display the data that the user input from the database? Can you give us a layout of the db please. Quote Link to comment 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.