graham23s Posted July 14, 2007 Share Posted July 14, 2007 Hi Guys, i have a few fields in mysql that are purely numbers (int) if a user hasn't filled in a fields the default value is 0 (and also echoes out 0) is there anyway i can have it not echo anything out untill the proper value is filled in? or would i need to set it to varchar? thanks guys Graham Quote Link to comment Share on other sites More sharing options...
BillyBoB Posted July 14, 2007 Share Posted July 14, 2007 try when you echo it out on your php: <?php if($array[intfield]==0) { echo ("Not filled"); }else{ echo $array[intfield]; } ?> Quote Link to comment Share on other sites More sharing options...
graham23s Posted July 14, 2007 Author Share Posted July 14, 2007 Thanks BB , will try that:) Graham 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.