I need an array of userids in template "conversation_userinfo". This array is written in a html or php file.
HTML-File: 1,2,3,4....
PHP-File:echo array(1,2,3,4...);
It should be used like:
Code:
<vb:if condition="in_array($conversation['userid'], $arrayofuserids)">...</vb:if>
How can I get and set that array as $arrayofuserids in template "conversation_userinfo" ?