spinnerd Posted January 22, 2007 Share Posted January 22, 2007 I need some advice on what I should do.What needs to be done.I need to develop an application with the following requirements:A form where the user fills in the required infoAnd then page where this info is displayed according to the user's filter options.The whole thing must run in php and mysqlMy question:Should I use a cms system.Or is there something that I can use to help me develop this, maby like a generator.My reason for asking is becouse I have to do a couple of these and time unfortunatly is not on my side.Any advice and guidence will be appreciated. Link to comment https://forums.phpfreaks.com/topic/35189-need-advice/ Share on other sites More sharing options...
trq Posted January 22, 2007 Share Posted January 22, 2007 This sounds so simple I wouldn't bother with any cms. In fact i could probably have written the application quicker than you wrote your question. Link to comment https://forums.phpfreaks.com/topic/35189-need-advice/#findComment-166190 Share on other sites More sharing options...
Lyleyboy Posted January 22, 2007 Share Posted January 22, 2007 Hi, I hope I can be a little help. You dont need a cms system or even mysql (unless you need to store the details in it.)Your form should look something like[code]<form action="form_processor.php" method="post"><input type="text" name="name"><input type="text" name="age"><input type="text" name="shoe_size"><input type="text" name="IQ"><input type="submit">[/code]The form_processor.php page should look like this(Please not the vars are case sensitive)[code]<?phpecho "Thanks for entering your info";echo "You entered the following info";echo "Your name " . $name;echo "Your age " . $age;echo "Your shoe size " . $shoe_size;echo "Your IQ " . $IQ;//Now write the text to a file or whatever you need.[/code]I hope this helps Link to comment https://forums.phpfreaks.com/topic/35189-need-advice/#findComment-166201 Share on other sites More sharing options...
spinnerd Posted January 23, 2007 Author Share Posted January 23, 2007 [quote author=thorpe link=topic=123468.msg510359#msg510359 date=1169452728]This sounds so simple I wouldn't bother with any cms. In fact i could probably have written the application quicker than you wrote your question.[/quote]Ye thanx, thats great.But I have not been working with mysql for a long time, hence the title of the topic "Need advice" Link to comment https://forums.phpfreaks.com/topic/35189-need-advice/#findComment-166973 Share on other sites More sharing options...
spinnerd Posted January 23, 2007 Author Share Posted January 23, 2007 Thanx for the dude.appreciate it. Just one more question, how would I go about storing the the form data in an mysql database and then calling it from that database. Link to comment https://forums.phpfreaks.com/topic/35189-need-advice/#findComment-166974 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.