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 Link to comment https://forums.phpfreaks.com/topic/59998-question-about-int-fields/ 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]; } ?> Link to comment https://forums.phpfreaks.com/topic/59998-question-about-int-fields/#findComment-298386 Share on other sites More sharing options...
graham23s Posted July 14, 2007 Author Share Posted July 14, 2007 Thanks BB , will try that:) Graham Link to comment https://forums.phpfreaks.com/topic/59998-question-about-int-fields/#findComment-298411 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.