bharrison89 Posted September 18, 2009 Share Posted September 18, 2009 Okay sorry be such a newb ill explain my intention, At present i am running some php/mysql based software for my client management, now i have created some custom fields in the software which allow me and my staff to view more information on a client. What i would like to do is include a snippet of some description which would show me all the clients that have the custom field "Feed Received" set to "No". In which case my staff can contact them to optain the feed. If the field is set to "Yes" then the client information is not displayed and so my staff do not have to contact them. Sorry if this seems to be a very simple question but i just cannot find a solution. Quote Link to comment https://forums.phpfreaks.com/topic/174731-using-php-to-show-showing-yes-or-no-dependent-on-database/ Share on other sites More sharing options...
DEVILofDARKNESS Posted September 20, 2009 Share Posted September 20, 2009 Just add a field in the user table calles 'hasfeed' and make it boolean or enum('Yes','No') And then a query that only shows those with hasfeed = No Quote Link to comment https://forums.phpfreaks.com/topic/174731-using-php-to-show-showing-yes-or-no-dependent-on-database/#findComment-921646 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.