PDA

View Full Version : Solved: Using $post['fieldX'] in array?


DataHero
08-16-2010, 12:40 AM
Hey there,

I'm currently trying to display a header (e.g. "<name> is currently playing") in a dropdown menu, only if at least one field has been given/answered/entered by the user in his usercp.

So far I've tried the following:


<if condition="in_array($post[profilefieldid], array(9,10,11,12,13))">
<tr>
<td class="thead">$post[username] is currently playing</td>
</tr>
</if>


Does anyone have a clue which variable I should be using (or in general, how this could be done?)

Any help would be greatly appreciated.

EDIT:

Never mind, I've fixed it. I just added an if conitional with OR statements for each $post['fieldX']. Thanks anyway.