Jump to content

PHP to hide an item if field value is null


adamo8888

Recommended Posts

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>

 

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.