I’m trying to make the following work but it just doesn’t:
Let’s assume {users} contains “12,34,56,23,78”
<?php
$users = "{users}";
$users = explode(",", $users);
print $users[0];
?>The result is this, so obviously explode is not working at all. Any ideas?
12,34,56,23,78