'm fairly new to php but I have relatively easy time picking up new skills with it.
I'm currently trying to figure out how to add a "watchlist" to a community script. The watchlist would allow members to enter keywords for products or services and when another member posts an item with matching keywords in the product title it would send the watching member an email.
(correct me if I'm wrong) the way I would approach it is to add a new field in my members table called "watchlist" where the member would add a list of keywords (strings).
When a new item is posted a query would run and match any strings in the title to any keywords in the existing members "watchlist" field.
If a match is found a link to the posted item would be sent to the watching member, and the link would be saved to a section of their profile called "items of interest".
That is the structure of what I'm trying to accomplish, so now I need help figuring out the code to make it happen!
HELP PLEEEEEAAAASE! 🙂