Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Member administration

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #37951
    Bob
    Member

    Hello,

    I’m working on creating a website for a small association. We’d like to have the possibility for people to apply for membership on that website, so we can review their application and accept them as members. I’m just wondering what is the best way to do the administration of the members. We first came up with the idea to do it in MS Excel but then I thought MS Access might be better, as you can make forms and reports with it. And I thought it might be possible to connect it somehow to the website, so that when people register on the website, their info automatically gets added to the access database.

    I just don’t know if that is possible – I’m thinking now that when someone registers at the website, his info gets added to the mysql database on the server where the website is hosted. I wonder if it’s possible this information automatically gets added to the MS Access database? The thing is people will also be able to sign up on paper sheets which we manually will add, so in that case a easy to understand GUI like in ms access would be handy, as not all of us is able to insert the info in the database on the server in phpmyadmin. And perhaps someone just walks onto the desk and wants to sign up there, so in that case it would also be handy to power up Access and add the member directly there.

    Any ideas as to what would be best solution for this? Connecting the 2 databases might not be the best idea I think (I can imagine data redundancy or errors during connecting etc.), but downloading the server db each time and importing it in access isn’t really efficient either.

    Thanks in advance! :)

    #102405
    Anonymous
    Inactive

    You could use Access as the frontend and MySQL for the backend. That way you only have one database in use.

    http://dev.mysql.com/doc/refman/5.1/en/connector-odbc-examples-tools-with-access.html

    This isn’t something I have a lot of experience with and, crucially, I don’t know how it would fare if you were allowing PHP scripts to update the database at the same time as the Access app. However, it does seem like a useful starting point. Maybe more experienced people than me could comment more.

    #102434
    Bob
    Member

    Well, I was thinking of using phpmyadmin as it indeed works with the DB directly, but my colleagues unfortunately won’t have much knowledge of using that. So in that way, an easy gui like ms access has would be better. Also I think it would be more convenient to just open the database in Access in case they want to sign up using a paper sheet or just by visiting our desk instead of having to login to the server and start up phphmyadmin and add them that way. This ODBC thing looks interesting though, so I might have a look at that.

    Thanks for the responses so far – if anyone else has any ideas how to do this in the best way, please let me know :)

    #102745
    Bob
    Member

    Any more suggestions?

    #102791

    Just my two cents: I would advise against using PHPMyAdmin or MSAccess to give employees access to the database. Especially if you are worried they will have trouble with the PHPMyAdmin interface, they certainly shouldn’t be interacting directly with a production database. I would suggest writing a simple web page that uses PHP to validate input, strip out dangerous text, and submit the changes to the database. Always treat internal employees just as you do the public users. If you wouldn’t give them direct access to the database, don’t give employees (save for SQL DB admins, of course) direct access, either.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.