Support

Account

Home Forums General Issues show array of relationship field values in USER query Reply To: show array of relationship field values in USER query

  • With this code the error is gone:

    <?php
    	$values = $user->user_faecher;
    	if (!empty($values))	{
    		
    		foreach($values as $value) {
    		    if($value != end($values)){
    		        echo $value;
    		    } else {
    		        echo $value;
    		    }
    		}
    
    	}
    
    ?>

    but i have still only the IDs … i need the names 🙁 .