I've got the html and insert parts worked out fine... When you select the users, it inserts the users id into the database seperated by commas... E.g:
Code: Select all
1,5,21Code: Select all
select * from projects where userids rlike '2'Does that make sense? How would I make this work?
Would I have to change the database insert to:
Code: Select all
,1,5,21,Code: Select all
select * from projects where userids rlike ',2,'