PDA

View Full Version : Using registration pack to collect information only


chadhuskey391193
03-19-2010, 08:04 AM
I'm building a site that needs to have a page that allows users to register for upcoming events. So I need to be able to collect information into a database, but I don't really need the users to be able to "log in" to the site. There isn't going to be an area of the site, at least not currently, that is restricts users to log in to see.

Would this be a good application for this solution?

Thanks

Jason Byrnes
03-19-2010, 11:00 AM
you could accomplish what you want to do using the built in Dreamweaver Insert Record server behavior.

Create a database table with a column for each piece of information you wish to collect from the user.

then create a php page that has a form on it, add a text field for each of the columns in the database table you created, then apply the Insert Record behavior:
http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-78a4a.html

chadhuskey391193
03-19-2010, 11:21 AM
Thanks very much for the answer. That was very helpful!

Jason Byrnes
03-19-2010, 11:28 AM
you're welcome.