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>

 

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.