chanchelkumar Posted July 16, 2008 Share Posted July 16, 2008 Hi all, Am working with some forms... It contains some 16-20 tables and 75 fields in each table. How to check one of blank field. is there any option to find my blank fields from the table..With out checkin every field !="", !=null any clue can help me.. am totally bugged with the fields .. No idea i mind... Just a small help please... Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/ Share on other sites More sharing options...
Xurion Posted July 16, 2008 Share Posted July 16, 2008 Can you post your code? Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/#findComment-591519 Share on other sites More sharing options...
chanchelkumar Posted July 17, 2008 Author Share Posted July 17, 2008 $SelQry="SELECT * FROM tablename WHERE customerid='$clientid'"; $SelExe=mysql_query($SelQry)or die(mysql_error()); $total=mysql_num_rows($SelExe); if($total>0) { $selout=mysql_fetch_object($SelExe); echo'Please Enter following Data'.'<br>'; $course_name=$selout->nbcfdc_educational_cors_name; if(!$course_name){echo ' Name of the course'.'<br>';} $institution=$selout->nbcfdc_educational_name_institution; if(!$institution){echo 'Name of the Institution'.'<br>';} } This what i want!!! Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/#findComment-592368 Share on other sites More sharing options...
chanchelkumar Posted July 17, 2008 Author Share Posted July 17, 2008 Any help ??? ??? ??? Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/#findComment-592405 Share on other sites More sharing options...
chanchelkumar Posted July 18, 2008 Author Share Posted July 18, 2008 please help me!!!!!!!! Any one Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/#findComment-593108 Share on other sites More sharing options...
corbin Posted July 18, 2008 Share Posted July 18, 2008 http://php.net/empty http://php.net/strlen Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/#findComment-593112 Share on other sites More sharing options...
Xurion Posted July 18, 2008 Share Posted July 18, 2008 Hey Corbin... whad up world? Link to comment https://forums.phpfreaks.com/topic/115028-check-my-field-blank/#findComment-593173 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.