offdarip Posted June 27, 2010 Share Posted June 27, 2010 I have a local event member system where users can be informed about different events. Users have a member page, etc. I have a list of events and i want users to be able to click on a "attend" link next to the event and the event will show up under their attending events on their member page. Can anyone help me with this or has anyone seen a similar script? Im thinking i will need to setup another mysql table for the events but any help would be greatly appreciated. Link to comment https://forums.phpfreaks.com/topic/205987-attending-event-script/ Share on other sites More sharing options...
inversesoft123 Posted June 27, 2010 Share Posted June 27, 2010 http://www.google.com/search?&q=php+events+script There are thousands. East or west google is always best Link to comment https://forums.phpfreaks.com/topic/205987-attending-event-script/#findComment-1077851 Share on other sites More sharing options...
paulman888888 Posted June 27, 2010 Share Posted June 27, 2010 I would add another table maybe prefix_attending and have these colomns; id, event_id, user_id, status id = every table needs one event_id = the event of the id you are adding user_id = the user id or username if you dont use id's. status = I would use codes. For example, 1 = attends,2 = not attending etc. But if you want you could have text. Now for the button. Point to your same page or process page and just enter the information into the database. INSERT INTO prefix_attending SET event_id = $_GET['eid'] and so on Hope i helped abit Paul Link to comment https://forums.phpfreaks.com/topic/205987-attending-event-script/#findComment-1077852 Share on other sites More sharing options...
offdarip Posted June 30, 2010 Author Share Posted June 30, 2010 Thanks paulman88888 for you reply.. I'm not too fluent in php.. I'm working with it trying to get it going tho.. Thanks again Link to comment https://forums.phpfreaks.com/topic/205987-attending-event-script/#findComment-1079347 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.