adamo8888 Posted July 7, 2014 Share Posted July 7, 2014 Hi I would really appreciate some help. I am trying to structure some php to detect if a value is null, if it is not null i want it to print the value if null print nothing. so far all i have it doing is detecting whether it is null or not. but it is printing part of my code instead of the fields value. here is the code I have this is for a word press theme that I am modifying for my purpose. <td colspan="7" class="hideme"> '. (get_post_meta($post->ID,"_as_pros",true)!="" ? '(get_post_meta($post->ID,"_as_pros")' : '') .' </td> Link to comment https://forums.phpfreaks.com/topic/289503-php-to-hide-an-item-if-field-value-is-null/ Share on other sites More sharing options...
Ch0cu3r Posted July 7, 2014 Share Posted July 7, 2014 Remove the quotes around the code highlighted in red <td colspan="7" class="hideme"> '. (get_post_meta($post->ID,"_as_pros",true)!="" ? '(get_post_meta($post->ID,"_as_pros")' : '') .' </td> Code within in single quotes, will not be parsed it will be treated as text. Link to comment https://forums.phpfreaks.com/topic/289503-php-to-hide-an-item-if-field-value-is-null/#findComment-1484094 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.