argroups Posted April 6, 2006 Share Posted April 6, 2006 I have a dating website I filter the contact details in the email by using word filter, but after the member does the payment I would like them to send emails without the word filter, How can i do this ? Can any one help it ? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted April 6, 2006 Share Posted April 6, 2006 do you use a database? If you do then create an extra row, in the table you use to hold all your members information, called paid. Assign the value of the paid row an ENUM values with values of 'Y', 'N' (ENUM('Y', 'N'))Give it a defualt value of N.Now when a user makes a payment you will need to upload the users table to change the paid row to Y for that user. Then when he/she sends an email you will check the database to see whether the member has paid, if they have done you dont apply the word filter if the havent you apply the word filter. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.