coatezy Posted January 9, 2008 Share Posted January 9, 2008 Hi I run a small website for a non profit making radio control car club in the uk. The club is holder a European championship and I have been asked to create a form that the visiting racers complete so we have an idea of numbers and cars etc.. The results could then be viewed by all. I have been looking at guest books hoping I could modify the form that they complete i.e name, county, car, transmitter frequency, guests? but I just cand anything out there that can be easily modified and looks good.. Does anyone know anything out there that might do the job I require..? clubs web address is http://sweetnap.awardspace.co.uk/ Thanks Tom Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/ Share on other sites More sharing options...
revraz Posted January 9, 2008 Share Posted January 9, 2008 Looks good is in the eye of the beholder. As for a form and the backend DB, that's easy to make and would only take an hour or so to do, assuming you have access to a DB. Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-434785 Share on other sites More sharing options...
coatezy Posted January 9, 2008 Author Share Posted January 9, 2008 Looks good is in the eye of the beholder. Haha I agree! Yeah I have 1 mysql database and php support. As said only needs to be something very simple and something where I can add my own questions (fields) Thanks Tom Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-434791 Share on other sites More sharing options...
drummer101 Posted January 9, 2008 Share Posted January 9, 2008 Yeah, just like revraz said, he beat me to my answer, it would *honestly* be easier to write a simple submission form db fields could include id name county car frequency guests team_captain Not entirely sure what you'd need, but it really isn't a massive project. 2hrs tops. <form name="???" method="post"> <table> <tr> <td>Name:</td> <td><input type="text" name="name"></td> </tr> <tr> <td>County:</td> <td><input type="county"></td> </tr> </table> etc Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-434795 Share on other sites More sharing options...
revraz Posted January 9, 2008 Share Posted January 9, 2008 I'm sure someone in the Freelance area will do it for you. Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-434796 Share on other sites More sharing options...
coatezy Posted January 9, 2008 Author Share Posted January 9, 2008 If anyone out there is willing to put something really simple together or point me in the direction of a simple form I would be very greatful.. I wouldn't have a clue how to create a form like this but I am always willing to try and modify things!! Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-434811 Share on other sites More sharing options...
coatezy Posted January 9, 2008 Author Share Posted January 9, 2008 Yeah, just like revraz said, he beat me to my answer, it would *honestly* be easier to write a simple submission form db fields could include id name county car frequency guests team_captain Not entirely sure what you'd need, but it really isn't a massive project. 2hrs tops. <form name="???" method="post"> <table> <tr> <td>Name:</td> <td><input type="text" name="name"></td> </tr> <tr> <td>County:</td> <td><input type="county"></td> </tr> </table> etc Lol I have been looking for forms of guest books to try and do the job for the past 2 days! I am normally able to find something but this one has got me well and truly stumped! Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-434815 Share on other sites More sharing options...
drummer101 Posted January 10, 2008 Share Posted January 10, 2008 Just start with what I gave you, put it into a WYSIWYG editor, and continue adding new lines & text inputs. Then collect the data on the next page as $foo = $_POST['input_name']; Quote Link to comment https://forums.phpfreaks.com/topic/85227-guestbook-style-form-register/#findComment-435677 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.